我需要在 Y 轴上显示数组中最大值的标签,分别为 0、25%、50%、75% 和 100% 值。
我的例子最大值是100,000。 Y 轴的输出应为:0、25,000、50,000、75,000、100,000。 不确定我应该在 stepSize 中放什么。对于最大值,我可以过滤数组中的 maxAmount。
yAxes: [
{
ticks: {
min: 0,
max: ???
beginAtZero: true,
stepSize: ???,
callback(value) {
return `Php ${formatHelper.kFormatter(value)}`;
},
},
},
],
Y 轴的输出应为:0、25,000、50,000、75,000、100,000。