是否可以使用 chart.js 恢复折线图中的 x 轴值

Is it possible to revert x-axe values in line chart with chart.js

我正在使用 chart.js,并且我有 line chart,值为 from 10 to 100。 我的最高点的值为 100,但这对我的数据来说是不正确的。对我来说,100 是不好的结果。有没有办法revert x-axe to start from 100 to 10.

如果不行,有人可以推荐javascript (NO jQuery)图表,可以解决我的问题吗?

在您的图表选项中试试这个:

scaleOverride: true,   
scaleSteps: 10,
scaleStartValue: 100,
scaleStepWidth: -10

它应该可以解决问题。

参见a jsfiddle of it here