gpt4 book ai didi

chart.js - 图表JS数据从零开始

转载 作者:行者123 更新时间:2023-12-03 15:50:28 27 4
gpt4 key购买 nike

这就是我设置数据的方式:

    const data = {
labels: ['February', 'March'],
datasets: [
{
label: 'My First dataset',
backgroundColor: 'rgba(255,99,132,0.2)',
borderColor: 'rgba(255,99,132,1)',
borderWidth: 1,
hoverBackgroundColor: 'rgba(255,99,132,0.4)',
hoverBorderColor: 'rgba(255,99,132,1)',
data: [5, 9]
}
]
};

但是第一个元素设置轴的起点:

enter image description here

但我希望它从零开始

添加以下内容无济于事:
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}

我找不到其他设置可以在文档上执行此操作。

我正在使用这个顺便说一句: https://www.npmjs.com/package/react-chartjs-2

最佳答案

尝试将min添加到您的选项中:

    var options = {
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
min: 0
}
}]
}
};

enter image description here

现场Copepen: Chart.js Start at zero

关于chart.js - 图表JS数据从零开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44346562/

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