Borrar filtros
Borrar filtros

dragging a selected point within uiaxes

7 visualizaciones (últimos 30 días)
Alain Barraud
Alain Barraud el 25 de En. de 2021
Comentada: Adam Danz el 15 de Feb. de 2021
Hello,
wihin standard figure and axes, I can easely move point.
These points are the graphical representation of complex numbers, so when I move a point I must move its conjugate accordingly.
All works fine with classical figure. I currently use gco to obtain the current point handle. What would be the equivalent with uiaxes within an uifigure?
Best Regards
  1 comentario
Adam Danz
Adam Danz el 26 de En. de 2021
"dragging" a plotted point isn't supported in any type of figure although some objects such as text or a point object are draggable.

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 26 de En. de 2021
Editada: Adam Danz el 26 de En. de 2021
HandleVisibility is set to off by default with uifigures and this prevents gcf/gca/gco from accessing the figure handle or anything within the figure.
Just before using gco, set the HandleVisibility to "on" and then set it off again at the end of the function.
Example
% uifig is the handle to the figure
uifig.HandleVisibility = 'on';
h = gco();
uifig.HandleVisibility = 'off';
% You could leave it on but that risks other plotting functions
% having unintended access to the figure.
Alternatively you can set the handle visibility to "callback" so that it's accessible from callback functions.
You may need to make the figure & axes active after doing this; if so, see these instructions to a similar question.
  14 comentarios
Alain Barraud
Alain Barraud el 14 de Feb. de 2021
hello
The problem has been recognised as a bug by mathworks and has been fixed in MATLAB R2021a !! Good news!!
Alain
Adam Danz
Adam Danz el 15 de Feb. de 2021

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by