Highstock'upcolor'被系列'color'覆盖

时间:2017-05-17 01:03:56

标签: highcharts highstock

我正在使用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'
    }]
});

Working Example

在上面的例子中你会看到烛台的颜色是黄色而不是红色。

如何使plotOptions颜色优先于series颜色?

0 个答案:

没有答案