在Chart.js中设置雷达(蜘蛛)图表版本2.x(2.4.0)步骤(间隔)

时间:2017-01-25 11:24:27

标签: javascript jquery chart.js

我已经搜索过设置步骤值,但我找不到答案。如果有人知道,请分享你的想法:

按以下方式工作:

0
0.5
1
1.5
.
.
5

预期:

0
1
2
3
4
5

脚本:

scale: {
    ticks: {
       beginAtZero: true,
       max: 5,
       steps : 1//Not working
    }
}

先谢谢。

1 个答案:

答案 0 :(得分:0)

非常抱歉,小事终于得到了答案:

scale: {
    ticks: {
       beginAtZero: true,
       max: 5,
       stepSize: 1 //working Now
    }
}