我开始使用chart.js库,在使用以下属性时遇到问题: stepSize和stepStartValue。 单独使用,每个都运行良好。但是一起使用,似乎只是忽略了stepStartValue,只考虑了stepSize ......
我使用谷歌浏览器作为网络浏览器,我在java脚本控制台中没有收到任何错误消息......
在我“处理”这两个属性的代码下面(左边yAxes的ticks部分):
options: {
responsive: false,
scales: {
yAxes: [
{
id: 'A',
type: 'linear',
position: 'left',
ticks: {
stepStartValue : 6,
stepSize: 3
}
},
{
id: 'B',
type: 'linear',
position: 'right',
ticks: {
min: -10,
max: 10
}
}
如果有人可以帮忙! - )...... 谢谢。