Highchart / Highstock如何设置单个ohlc或蜡烛的颜色?

时间:2017-08-01 06:03:03

标签: javascript angular highcharts highstock

我已设置角度为2的highstock ohlc但不能设置OHLC图表类型的上下颜色,例如,hclose增加时为绿色,下降时为红色。是否有任何API参考或任何实现方式?如下图所示,我希望我的图表看起来像...... I want to implement something like this

1 个答案:

答案 0 :(得分:2)

我找到了这样的方式及其工作方式: - )

plotOptions: {
    ohlc: {
        color: 'red',
        upColor: 'green'
     }
},
series : [{   
    type: 'ohlc',                 
    name : 'Stock Price', 
    data : [],
    yAxis : 0,                            
}, {   
    type: 'column',                 
    name : 'volume', 
    data : [],
    yAxis : 1,                        
}]