Labeling axes in app design

35 views (last 30 days)
Kyle Koutonen
Kyle Koutonen on 15 Feb 2021
Edited: Adam Danz on 16 Feb 2021
Im creating an app that that you input data into a table and names for each column. then on another tab i plot these values. I wanna make the axes lables to be the headers from my table but i don't know how to code in lables in app desginer since it's not like regular matlab where i can just sat xlabe=(''), how would i accomplish this in app designer?
for refrence I have the names of the columns saved in a variable called app.s

Accepted Answer

Adam Danz
Adam Danz on 15 Feb 2021
Edited: Adam Danz on 16 Feb 2021
Setting axis labels for uifigures (ie, in app designer) is the same process as setting axis labels in regular figures. The only difference is that you must specify the axis handle in UIFigures since the HandleVisibility property of uifigures is off by default. It's also encouraged to do this in regular figures but not required if you're working with the current axes.
xlabel(app.UIAxes, app.S{1})

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!