score:2

Accepted answer

You can achieve this by using the plotBackgroundColor from the chart option combined with the alternateGridColor from the xAxis options.

Here is an example :

var color1 = 'rgba( 255, 0, 0, .3 )';
var color2 = 'rgba(255, 0, 255, .2)';

chart: {
    plotBackgroundColor: color1
},
xAxis: {
    alternateGridColor: color2,
    ...
},
...

A live example : http://jsfiddle.net/YRgBf/1/


Related Query

More Query from same tag