Enabling Data Cursor in App Designer?
16 次查看(过去 30 天)
显示 更早的评论
How can I enable the data cursor for all plots in a UIFigure made in the new App Designer?
I have tried datacursormode(app.UIFigure1) but get the error message:
Undefined function 'getAxisComponent' for input arguments of type 'handle.handle'.
5 个评论
Farley Postgate
2020-4-21
Would be very nice, at this point the activeX gui plots are more advanced because of this!
Lucas Acuna Scafati
2020-5-5
Same here, using App Designer 2017b and looking for a solution. Did any of you guys find a workaround?
回答(2 个)
Adam Danz
2021-5-4
编辑:Adam Danz
2021-5-4
datacursormode is supported in uifigures (e.g. app designer) starting from R2020a I believe (tested in R2021a).
For example, place this in your app's startup function,
datacursormode(app.UIFigure, 'on')
ginput is also supported in uifigures (e.g. app designer) starting in R2020b, I believe. However, since ginput still does not have an input option for an axes handle, you have to follow steps outlined in this answer so that ginput acts on the correct axes.
0 个评论
Raghu S
2018-7-27
datacursormode, ginput, and rect are unsupported in-app designers. Expected to be added in future release.
3 个评论
Adam Danz
2021-5-4
@Lee & @David Giger I noticed your comments were made in 2021 so I've updated this thread with a new answer that addresses your comments.
另请参阅
类别
在 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!