How do I reset axis ticks to normal after I modify them?
Mostrar comentarios más antiguos
Suppose I have turned on datetick for a specific axis. Is there a way to turn off / reset the axis ticks to normal mode with 'set' commands?
Respuesta aceptada
Más respuestas (2)
Ivan van der Kroon
el 31 de Mayo de 2011
You can use
set(gca,'XTickLabel',xdate)
where xdate is your x-axis data. With datetick you're just changing the labels, but not the ticks themselves. Hope it helps!
1 comentario
Oleg Komarov
el 31 de Mayo de 2011
set(gca,'xtickl',get(gca,'xtick'))
Martijn Steenwijk
el 31 de Mayo de 2011
0 votos
1 comentario
Oleg Komarov
el 31 de Mayo de 2011
Solutions don't work says nothing about your problem (since both solutions do work if applied coherently) and it's not clear what's your problem.
To see what's the difference with your problem post the formatted code (editing your answer), otherwise no clue.
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!