How to eliminate unwanted grids on the z-axis?

2 views (last 30 days)
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:
微信截图_20181123180423.png
How can I eliminate the dotted grids and only keep the solid lines? Thanks!
  2 Comments
Edward Liang
Edward Liang on 23 Nov 2018
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.
Jan
Jan on 23 Nov 2018
Edited: Jan on 23 Nov 2018
Please post the code you have used to create the graphics. Then it is much easier to suggest a modification. Maybe all you need is
yticks(10.^(-1:3))

Sign in to comment.

Accepted Answer

Luna
Luna on 23 Nov 2018
Hi Edward,
Maybe this can solve your problem:
set(gca,'XMinorGrid','off');
set(gca,'YMinorGrid','off');
set(gca,'ZMinorGrid','off');

More Answers (0)

Community Treasure Hunt

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

Start Hunting!