Borrar filtros
Borrar filtros

Rotation of the title of the plot

12 visualizaciones (últimos 30 días)
Elzbieta Trynkiewicz
Elzbieta Trynkiewicz el 4 de Mzo. de 2019
Respondida: Kevin Phung el 4 de Mzo. de 2019
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!

Respuestas (1)

Kevin Phung
Kevin Phung el 4 de Mzo. de 2019
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;

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by