Colormapeditor() for UIAxes in App Designer?

12 visualizaciones (últimos 30 días)
Rod Lopez
Rod Lopez el 14 de En. de 2021
Comentada: Rod Lopez el 2 de Feb. de 2021
I am curious whether or not there is a way that I can edit a colormap for a UIAxes component using the "colormapeditor". I have an app designer app that plots a colormap, and would like a simple solution for allowing the user to edit the map. I am able to perform these edits on a normal figure, but no luck on app.UIAxes. I currently have a menu option callback that calls colormapeditor(app.UIAxes). I do not receive an error, colormapeditor opens and a separate blank figure opens alongside it. What am I missing here? Thank you!!!
  1 comentario
Rod Lopez
Rod Lopez el 1 de Feb. de 2021
Update (01 Feb 2021): I found a workaround, but have a warning popping up that I am unable to remove.
I started by copying the app's plot to a blank figure which is hidden from view from the user. Colormapeditor() is then called and makes edits to this figure. A listener in the app updates the app's plot based on this hidden figure, which in turn alters the color map settings based on what the user picks. However, I now get the following warnings, which seems to be related to this listener. Any idea how I might go about fixing them, or perhaps a way to implement colormapeditor() without using this new method?
Warning: Error occurred while executing the listener callback for event MarkedDirty
defined for class matlab.graphics.axis.colorspace.MapColorSpace:
Attempt to modify the tree during an update traversal.

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 1 de Feb. de 2021
Editada: Adam Danz el 1 de Feb. de 2021
Set the UIFigure's HandleVisibility to ON prior to initializing colormapeditor. Then turn HandleVisibility back off afterwards.
app.UIFigure.HandleVisiblity = 'on';
colormapeditor
When finished,
app.UIFigure.HandleVisiblity = 'off';
  1 comentario
Rod Lopez
Rod Lopez el 2 de Feb. de 2021
Thank you, this works perfectly! I did not even think of doing this, as the UIAxes component has its visibility 'on' by default (but not the UIFigure).

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by