我在样式模式下使用Highcharts v5。
在普通模式下,您可以使用'颜色' -attribute指定图表的颜色,如下所示:
bearer
在样式模式中,您应该通过colorIndex ...
指定颜色series: [{
data: [...],
name: "mySeries",
color: '#FF0000'
}]
...而且,在css中,你必须指定colorIndex的颜色。
series: [{
data: [...],
name: "mySeries",
colorIndex: 2
}]
在样式模式中有没有办法可以直接用十六进制代码设置颜色,而不必先实现css类?