【发布时间】:2014-01-28 20:22:20
【问题描述】:
我需要创建红色和绿色区域以及线条系列。 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);
【问题讨论】:
标签: highcharts area