ChartJS 更改轴颜色

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

我有多折线图,我想对轴进行着色,因为在我的背景上看不到它们。

如何更改此选项?

我尝试了zeroLineColor,但它看起来已经不存在了。

https://www.chartjs.org/docs/latest/migration/v3-migration.html - 说现在我应该使用可编写脚本的缩放选项。

javascript charts chart.js
1个回答
0
投票

以下代码可用于更改chartjs图表中x轴的颜色。

options: {
scales: {
    y: {
    grid: {
                color: (line) => (line.index === 0 ? 'red' : 'rgba(0, 0, 0, 0.1)')
    }
  }
}

}

谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.