ChartJS React图表js-2始终保持x轴为0%至100%

mnowg1ta  于 2022-11-07  发布在  Chart.js
关注(0)|答案(1)|浏览(178)

我正在尝试创建一个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
    },
  },
},
wpcxdonn

wpcxdonn1#

查看docs for the Chart component options,它们指向Chart.js docs,其中最大比例设置在scale属性下,您在ticks属性中有它,请尝试:

...
  x: {
    ticks: {
      color: "white",
      beginAtZero: true,
    },
    grid: {
      display: false, // Hide x grid
    },
    max: 100,
  },
...

相关问题