MATLAB: How to see if grid is on

axesgridimage

Hey,
Quick question: Is there a way to check if grid is on or off in a certain axes?
Cheers!

Best Answer

get(AxesHandle,'XGrid')
get(AxesHandle,'YGrid')
Related Question