Labeling axes in app design

73 ビュー (過去 30 日間)
Kyle Koutonen
Kyle Koutonen 2021 年 2 月 15 日
編集済み: Adam Danz 2021 年 2 月 16 日
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 Center および File ExchangeDevelop 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