Enabling figure pan/zoom/data tips/etc. toolbar in figures
25 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Harsha Priya Daggubati
on 27 Mar 2020
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 Comments
Rik
on 30 Mar 2020
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.
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!