Label Rotation in MATLAB 2014

Has MATLAB 2014a introduced a built in way of rotating axis labels? see here.
plot(1:3);
set(gca, 'XTICK', 1:3);
set(gca, 'XTICKLABEL', {'aaa', 'bbb', 'ccc'});
set(gca, 'Rotation', 45);
However this gives:
Error using hg.axes/set
The name 'Rotation' is not an accessible property for an instance of class 'axes'.
Have I misunderstood?

2 comentarios

Carl Witthoft
Carl Witthoft el 20 de Mayo de 2015
This works: set(get(gca,'YLabel'),'Rotation',-25);
Javier
Javier el 15 de Feb. de 2017
Just works for labels, not for Ticks.

Iniciar sesión para comentar.

Respuestas (2)

Sean de Wolski
Sean de Wolski el 15 de Sept. de 2014

0 votos

In R2014a, you need to replace the tick labels with text which can be rotated. here are a few utilities to help:

3 comentarios

Matlab2010
Matlab2010 el 15 de Sept. de 2014
This is new functionality in 2014B that isn't present in 2014a? Correct?
Sean de Wolski
Sean de Wolski el 15 de Sept. de 2014
The above is R2014a.
R2014b has not shipped and the R2014b prerelease's features are confidential under NDA.
Steven Lord
Steven Lord el 15 de Feb. de 2017
Now that release R2014b has shipped, I can confirm that tick label rotation was added in that release. See the "Other enhancements and new customization options" paragraph in the "New Visual Look" section of this documentation page.

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 15 de Sept. de 2014

Respondida:

el 29 de En. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by