Grid line not showing for y-axis

10 views (last 30 days)
BN
BN on 13 Apr 2020
Commented: BN on 13 Apr 2020
Hey all, the figure that I have is generated via geoshow, that look like this:
In order to cut the blank part between 40 to 45 (x-axis) I used:
axis equal
But after that, although small grid lines above x-axis values remain, for Y-axis they are all disappeared:
I found that this issue was acquired due to white background of the map. So if there is any idea how can I do to have small grid lines like x-axis for the y-axis without having blank space in figure I would be so grateful.

Accepted Answer

Adam Danz
Adam Danz on 13 Apr 2020
I could not recreate the problem. Try
box on
% or
box(axisHandle, 'on')
  3 Comments
Adam Danz
Adam Danz on 13 Apr 2020
The map image appears to be on top of the axes and blocking the axis ticks. If you adjust the xlim so that there is some space around the edges, you'll the the y-ticks.
This line will add 2% of space to the left and right of the x limit.
% ax is the axis handle
xlim(ax, xlim(ax)+range(xlim(ax))*[-.02, .02])
Repeat for ylim if needed.
BN
BN on 13 Apr 2020
Very good idea, Thank you so much

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!