我正在使用Highstock烛台。如果我为烛台color
指定plotOptions
并为series
数据指定颜色,plotOptions
颜色会覆盖series
颜色。
Highcharts.stockChart('container', {
plotOptions: {
candlestick: {
color: 'blue',
upColor: 'red'
}
},
rangeSelector: {
selected: 1
},
series: [{
type: 'candlestick',
name: 'Series name',
data: ohlcdata,
color: 'yellow'
}]
});
在上面的例子中你会看到烛台的颜色是黄色而不是红色。
如何使plotOptions
颜色优先于series
颜色?