MATLAB: Grid on in subplot

plotsubplot

Hi, i used the subplot function and want to apply to all the subplot this grid properties:
grid on
ax = gca;
ax.GridColor = [0 .5 .5];
ax.GridLineStyle = '--';
ax.GridAlpha = 0.5;
Is there any easy way to apply this without repeating it for every subplots? Thank you

Best Answer

You may want to use linkprop,
hlink = linkprop([ax1 ax2], {'GridColor','GridLineStyle','GridAlpha'});