且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在chartjs中将Y轴值从实数改为整数?

更新时间:2023-11-10 15:45:52

尝试这个,其中max是数据。

Try this, where max is the highest value of your data.

var steps = 3;
new Chart(ctx).Bar(plotData, {
    scaleOverride: true,
    scaleSteps: steps,
    scaleStepWidth: Math.ceil(max / steps),
    scaleStartValue: 0
});