Reputation: 1543
I wanted to show different color for every grid line, I am attaching the design screenshot is this possible to do?
Upvotes: 1
Views: 1866
Reputation: 6006
I don't know any way to do that out of the box, but basically, you can directly alter all the rendered svg elements on the stage:
$.each($('.highcharts-grid path'), function(){
$(this).attr('stroke',getRandomColor());
});
Upvotes: 2