Labeling axes in app design

70 次查看(过去 30 天)
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

采纳的回答

Adam Danz
Adam Danz 2021-2-15
编辑:Adam Danz 2021-2-16
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})

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by