作者:手机用户2602927807 | 来源:互联网 | 2022-12-23 17:02
我正在尝试调整yAxes上的比例,但找不到任何不过时的信息.
基本上,我希望我的yAxes从0到100,步长为25.
https://codepen.io/brycesnyder/pen/wmJKyv
yAxes: [
{
ticks: {
beginAtZero: true,
steps: 10,
stepValue: 10,
max: 100
}
}
]
JTM..
9
要执行此操作,请更改stepValue: 10
为stepSize: 25
和删除steps: 10,
.
请参见chart.js文档
1> JTM..:
要执行此操作,请更改stepValue: 10
为stepSize: 25
和删除steps: 10,
.
请参见chart.js文档