如何在 ChartJS 中操作 Y 轴

问题描述 投票:0回答:0

我需要在 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。

reactjs chart.js
© www.soinside.com 2019 - 2024. All rights reserved.