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