我正在尝试创建一个react-chartjs-2条形图。
我希望保持x轴始终为0%到100%。
现在,图形仅在x轴上显示最大值%(如果x值为80%,则x轴最大值设置为80)
scales: {
x: {
ticks: {
color: "white",
beginAtZero: true,
max: 100%,
},
grid: {
display: false, // Hide x grid
},
},
y: {
ticks: {
color: "white",
},
grid: {
display: false, // Hide y grid
},
},
},
1条答案
按热度按时间wpcxdonn1#
查看docs for the Chart component options,它们指向Chart.js docs,其中最大比例设置在
scale
属性下,您在ticks
属性中有它,请尝试: