Rotation of the title of the plot

20 ビュー (過去 30 日間)
Elzbieta Trynkiewicz
Elzbieta Trynkiewicz 2019 年 3 月 4 日
回答済み: Kevin Phung 2019 年 3 月 4 日
Dear,
I would like to rotate the title of the plot about 90 degrees. Could somebody help me how to do it or even there is possibility to do it?
Thanks a lot!

回答 (1 件)

Kevin Phung
Kevin Phung 2019 年 3 月 4 日
Get the handle of the axes, and access the title > rotation property. Here's an example you can run:
f = figure;
a=axes; %axes handle, if you return a, you will get a list of properties
a.Title.String = 'hello';
a.Title.Rotation = 90;

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by