how to add coustum "Titlle" option for "UIaxes" via "Edit Field(Text)" in app Designer...means end user could enter and change the "Title" for different occasions and plots
10 次查看(过去 30 天)
显示 更早的评论
if i use a UIAxes in app designer there is a option in UIAxes properties for "Tiltle" but
i want to give option to end user so he may enter title of UIAxes whatever he wants...
i think this could be done by inserting a "Edit Field(Text)" with the UIAxes but what would be the code syantax to link it with UIAxes "Title" funtionality.
0 个评论
采纳的回答
Mario Malic
2020-10-6
Write this in your Edit field value changed callback
ax1.Title.String = app.TitleEditField.Value;
% Where ax1 handle of your uiaxes you want to edit the title of
5 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!