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!

 採用された回答

Voss
Voss 2022 年 2 月 2 日
編集済み: Voss 2022 年 2 月 2 日

0 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeElectrical Block Libraries についてさらに検索

製品

リリース

R2021b

質問済み:

2022 年 2 月 2 日

編集済み:

2022 年 2 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by