mravey
mravey

Reputation: 4500

ExtJS Chart Hide Grid

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

Answers (1)

Andrey Selitsky
Andrey Selitsky

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

Related Questions