Labeling axes in app design

70 Ansichten (letzte 30 Tage)
Kyle Koutonen
Kyle Koutonen am 15 Feb. 2021
Bearbeitet: Adam Danz am 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

Akzeptierte Antwort

Adam Danz
Adam Danz am 15 Feb. 2021
Bearbeitet: Adam Danz am 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})

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by