ChartJS设置yAxes“ticks”

时间:2018-03-20 19:30:37

标签: javascript html css chart.js

我正在尝试调整yAxes上的比例而无法找到任何比例 没有过时的信息。

基本上,我希望我的yAxes从0到100,步长为25。

https://codepen.io/brycesnyder/pen/wmJKyv

            yAxes: [
                {
                    ticks: {
                        beginAtZero: true,
                        steps: 10,
                        stepValue: 10,
                        max: 100
                    }
                }
            ]

1 个答案:

答案 0 :(得分:7)

为此,请将stepValue: 10更改为stepSize: 25,然后移除steps: 10,

See chart.js docs