我需要创建红色和绿色区域以及线系列。 http://esbolsa.com/blog/wp-content/uploads/2012/12/Commodity-Channel-Index-Fortaleza.png
我正在使用以下代码,它可以正常显示红色(低于-100)。我可以指定另一个阈值(+100)吗?
chart.addSeries({
name: name + "_series",
id: name + "_series",
type: 'area',
data: cciData,
yAxis: name + '_axis',
showInLegend: false,
color: '#2f7ed8',
negativeColor:'red',
threshold:-100
},false);
答案 0 :(得分:1)
我看到这样做的唯一方法是创建除thresholds
和negativeColor
之外完全相同的2个系列。
答案 1 :(得分:0)
不幸的是,在Highcharts中,您只能设置单一阈值,但您可以使用额外的系列,即绿色区域。