Rotate Label on App Designer

48 views (last 30 days)
Sarah Farthing
Sarah Farthing on 23 May 2019
Answered: Hardik on 5 Mar 2024
Hi,
I've added a label component to my app in App Designer and want to rotate the textbox 90° so the text can be read vertically. I've tried using different methods to rotate text in other cases, e.g.:
set(app.Label,'Rotation',90)
app.Label.Rotate = 90
But keep receiving the error
There is no Rotation property on the Label class
Does anyone have any suggestions?
  3 Comments
Jenny Read
Jenny Read on 20 Dec 2019
Having vertical text labels is really quite basic functionality - surely these needs to be added as a matter of urgency?
Cathie Kessler
Cathie Kessler on 14 Jan 2021
Total hack, and not applicable, if you want to change the text or any other properties: make an image of your rotated text, and insert as an image.

Sign in to comment.

Answers (2)

Kanishk Singhal
Kanishk Singhal on 6 Jul 2023
There is a FEX submission which can be help.
You can change the button to simple text, by changing property in uicontrol.

Hardik
Hardik on 5 Mar 2024
there is no any rotation proprty but you can split text and put it into label so it will look like vertical.
lbl=uilabel(app.GridLayout);
lbl.Layout.Row=9;
lbl.Layout.Column=2;
text="Vertical comment";
newstring=split(text,'');
lbl.Text=newstring;
lbl.HorizontalAlignment='center';

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!