Enabling figure pan/zoom/data tips/etc. toolbar in figures
26 次查看(过去 30 天)
显示 更早的评论
Hello,
I recently upgraded to 2019b, and it seems some figure behavior has changed. I have a GUIDE application where I plot some data. Some time in 2018, I think between 2018a and 2018b, a feature was introduced where if you hovered above the upper right part of a plot, a set of buttons appeared (what is this called?).
Anyway, in the GUIDE application, these controls magically appeared and enhanced the plots immensely with no programming effort on my part. But now, in 2019b, it is not the default behavior. Can someone explain how to turn this feature on?
Thanks,
Charles Wright
0 个评论
回答(1 个)
Harsha Priya Daggubati
2020-3-27
Hi,
You can use the following command in your GUIDE OpeningFcn .m code, to add toolbar to your axes. Here, hObject.Children is the axes object:
axtoolbar(hObject.Children,{'zoomin','zoomout','restoreview'});
But, It is suggested to migrate all your apps from GUIDE to App Designer in recent versions. For assistance in migrating your apps, use the GUIDE to App Designer Migration Tool for MATLAB. This tool is available as a support package.
Hope this helps!
3 个评论
Rik
2020-3-30
Those toolbars should not disappear. You can read this doc page for more information. If you have a specific workflow causes that to happen: try to make a MWE so we can run your code without any other dependencies and can reproduce your issue.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!