Rotation of the title of the plot

조회 수: 3 (최근 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 CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by