我的图表有一个递减的 Y 轴,需要从 +3 开始到 -3

My chart has a decreasing Y axis, needs to start at +3 and go up to -3

我在 yAxes 设置中尝试了 reverse=true 但这似乎没有什么不同。

它总是假定刻度设置中的最小值 < 最大值。

这可能吗?

reverse=True 不适用于 2.x

我可以说:

           yAxes: [
              {
                id: 'y1',
                type: 'category',
                display: true,
                labels: ['-3', '-1', '+1', '+3'],
                position: 'right',
              }
            ]

以降序显式设置标签。这些值继续以原始比例指定,以便绘图正确显示。

我还必须覆盖工具提示回调,以便它在悬停时显示正确的值。