Please note that I do not want to get rid of all the grids, so 'grid off' is not my option. I only want to erase the dotted grids.
How to eliminate unwanted grids on the z-axis?
2 次查看(过去 30 天)
显示 更早的评论
I am trying to plot a 3D scatter plot. Although I have set the zticks to 10.^[-1, 3], I have still got a lot of unwanted grids on the z-axis, which looks like this:
How can I eliminate the dotted grids and only keep the solid lines? Thanks!
采纳的回答
Luna
2018-11-23
Hi Edward,
Maybe this can solve your problem:
set(gca,'XMinorGrid','off');
set(gca,'YMinorGrid','off');
set(gca,'ZMinorGrid','off');
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!