How to change the angle of xticklabel?

5 vues (au cours des 30 derniers jours)
Leon
Leon le 2 Fév 2022
Modifié(e) : Voss le 2 Fév 2022
Matlab has been automatically slanting my xTickLabels even when the font size is not that big and can fit the x-axis just fine without angled.
Is there a way to force it to be angled at 0-degrees (i.e., not slanted)?
Many thanks!

Réponse acceptée

Voss
Voss le 2 Fév 2022
Modifié(e) : Voss le 2 Fév 2022
You can use set(gca(),'XTickLabelRotation',0);
To demonstrate:
figure();
plot(1:10);
set(gca(),'XLim',[1 10],'XTick',1:0.5:10,'Fontsize',16); % automatically rotated
figure();
plot(1:10);
set(gca(),'XLim',[1 10],'XTick',1:0.5:10,'Fontsize',16,'XTickLabelRotation',0); % force to horizontal

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by