How to turn on the grids of axes upon start?
2 次查看(过去 30 天)
显示 更早的评论
Hi All,
I have an axes with tag 'axes1' in gui project, now i want that when the project is started, the minor grids of axes should be on, i have changed its properties through property editor, but nothing is working for me. But i just want the grids to be turned on, not other things like XTicks,YTicks etc .
Thanks in advance
1 个评论
Rik
2020-6-11
You can modify all relevant properties in your startup function.
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.
回答(1 个)
Mohammad Sami
2020-6-11
Use the function grid to turn off the grid. You can do this in the startup function as Rik mentioned
grid(handles.axes1,'off'); % replace handles.axes1 with the variable containing your axes
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!