Grid line not showing for y-axis

7 次查看(过去 30 天)
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.

采纳的回答

Adam Danz
Adam Danz 2020-4-13
I could not recreate the problem. Try
box on
% or
box(axisHandle, 'on')
  3 个评论
Adam Danz
Adam Danz 2020-4-13
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 2020-4-13
Very good idea, Thank you so much

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by