With HighCharts 3.0, you can now specify colors above and below a single threshold. Like this example:
http://jsfiddle.net/highcharts/YWVHx/
The following code:
$(function () { $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=range.json&callback=?', function(data) { $('#container').highcharts({ chart: { type: 'arearange' }, title: { text: 'Temperature variation by day' }, xAxis: { type: 'datetime' }, yAxis: { title: { text: null } }, tooltip: { crosshairs: true, shared: true, valueSuffix: 'ยฐC' }, legend: { enabled: false }, series: [{ name: 'Temperatures', data: data, color: '#FF0000', negativeColor: '#0088FF' }] }); }); });
Is it possible to have a different threshold with a third color, for example:

Thanks in advance for your help.
source share