How to set a broken y axis chart using chart.js

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

我有一张这样的图表 img

由于每个数据之间的比例有差距,所以我想在 excel 中将其绘制为断开的 y 轴图表。有没有办法用图表 js 做到这一点?我像这样设置这些图表

scales: {
    y: {
      display: true,
      max: 1000,
      min: 0,
      afterBuildTicks: (axis) =>
        (axis.ticks = [0, 50, 700, 800, 900, 1000].map((v) => ({
          value: v,
        }))),
      stepSize: 50,
      type: 'logarithmic',
    },
  },
chart.js
© www.soinside.com 2019 - 2024. All rights reserved.