有没有办法更改 Apex 图表上低于特定值的条形颜色?例如,当重量超过 200 磅时,条形变为红色。
这是我正在使用的代码,但我不太确定我应该为价值、seriesIndex 和 w
colors: ['#02DFDE'],
fill: {
colors: [function({ value, seriesIndex, w }) {
if(value < 360) {
return '#FF0000'
} else {
return '#02DFDE'
}
}]
},
千万里不及你
相关分类