remove grid lines completely
显示 更早的评论
I want to remove grilines completely. I just have the .fig file
采纳的回答
更多回答(1 个)
Kevin Holly
2022-1-25
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 个评论
Abhijit Sardar
2022-1-25
Kevin Holly
2022-1-25
See Walter's answer. His answer works for multiple axes.
类别
在 帮助中心 和 File Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!