如何在 chart.js3 折线图中沿 y 轴方向移动原点,以便 x 轴通过 (0,0) 以外的其他点?

How to shift the origin along y-axis direction in a chart.js3 line chart, so that x-axis pass through a different point other than (0,0)?

我正在使用 chart.js 绘制一个数据集,它是两个变量的比率,范围从 10 到 -10。但大多数时候它在 y=1 附近摆动。

我正在尝试在 chart.js3 的帮助下绘制此数据集的实线图。当填充方向低于 1(即 y<1)而不是默认 y=0 时,如何更改填充方向?

您可以为填充设置一个对象,您可以在其中进行配置:

const options = {
  type: 'line',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
      label: '# of Votes',
      data: [12, 19, 3, 5, 2, 3],
      borderColor: 'orange',
      fill: {
        target: {
          value: 8
        },
        above: 'rgb(255, 0, 0)', // Area will be red above the value 8
        below: 'rgb(0, 0, 255)' // And blue below the value 8
      }
    }]
  },
  options: {}
}

const ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
  <canvas id="chartJSContainer" width="600" height="400"></canvas>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.js"></script>
</body>

docs