Reputation: 4500
I'm using the axis.drawGrid() method but I'd also like to use something like axis.hideGrid() , is there a way to do that ?
Thanks
Upvotes: 0
Views: 574
Reputation: 2604
Yes, it's doable. I use the following code to hide grid lines on each axis.
chart.axes.getAt(index).gridLines.hide(true)
Upvotes: 2