remove grid lines completely

17 Ansichten (letzte 30 Tage)
Abhijit Sardar
Abhijit Sardar am 25 Jan. 2022
Kommentiert: Abhijit Sardar am 25 Jan. 2022
I want to remove grilines completely. I just have the .fig file

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jan. 2022
filename = 'something.fig';
fig = openfig(filename);
ax = findobj(fig, 'type', 'axes');
set(ax, 'XGrid', 'off', 'YGrid', 'off', 'ZGrid', 'off', 'XMinorGrid', 'off', 'YMinorGrid', 'off', 'ZMinorGrid', 'off');
  1 Kommentar
Abhijit Sardar
Abhijit Sardar am 25 Jan. 2022
This actually works. Thank you so much

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Kevin Holly
Kevin Holly am 25 Jan. 2022
After opening the figure, you can type the following assuming there is only one axes on the figure:
grid off
or
grid(gca,'off') %The first input target the axes. gca stands for get current axes.
  2 Kommentare
Abhijit Sardar
Abhijit Sardar am 25 Jan. 2022
there are two axis that is th problem. otherwise grid off would have worked. ok , where should i type this line.
Kevin Holly
Kevin Holly am 25 Jan. 2022
See Walter's answer. His answer works for multiple axes.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by