Borrar filtros
Borrar filtros

Enabling figure pan/zoom/data tips/etc. toolbar in figures

37 visualizaciones (últimos 30 días)
Charles
Charles el 24 de Mzo. de 2020
Editada: Charles el 4 de Abr. de 2020
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

Respuestas (1)

Harsha Priya Daggubati
Harsha Priya Daggubati el 27 de Mzo. de 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 comentarios
Rik
Rik el 30 de Mzo. de 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.
Charles
Charles el 4 de Abr. de 2020
Editada: Charles el 4 de Abr. de 2020
Ok, I've had time to investigate this. I decided to add the lines to make the toolbars visible part of the redisplay functions for each axis in the window (following all the plot commands). This apparently "turns on" the toolbars. I say "apparently" because when I simply print the state of the toolbar visibility, its value is always 'on', before or after the plotting activity in the axes. However, it's only after I explicitly set the visibility to 'on' that the toolbars consistently appear.
The plotting activity is nothing unusual; there's the plot command, grid, xlabel, ylabel, title, legend, a text box... nothing fancy
Anyway, I have found a workaround, and hope it continues to work.

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by