gpt4 book ai didi

chart.js - 如何设置Y轴的最大值和最小值

转载 作者:行者123 更新时间:2023-12-03 04:22:37 27 4
gpt4 key购买 nike

我正在使用 http://www.chartjs.org/ 中的折线图 enter image description here

正如您所看到的,Y 轴的最大值 (130) 和最小值 (60) 是自动选择的,我希望最大值 = 500,最小值 = 0。这可能吗?

最佳答案

对于 Chart.js V2(测试版),请使用:

var options = {
scales: {
yAxes: [{
display: true,
ticks: {
suggestedMin: 0, // minimum will be 0, unless there is a lower value.
// OR //
beginAtZero: true // minimum value will be 0.
}
}]
}
};

参见chart.js documentation on linear axes configuration了解更多详情。

关于chart.js - 如何设置Y轴的最大值和最小值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28990708/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com