Borrar filtros
Borrar filtros

Grid line not showing for y-axis

6 visualizaciones (últimos 30 días)
BN
BN el 13 de Abr. de 2020
Comentada: BN el 13 de Abr. de 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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by