How to annotate specific axes in a GUI

6 visualizaciones (últimos 30 días)
Adam
Adam el 8 de Jul. de 2014
Comentada: Adam el 11 de Jul. de 2014
I have created a GUI with more than one axes. I wish to annotate a plot in one of them using the annotation function, for example: h = annotation( 'textbox', [ 0 0 1 1 ] ). However the coordinates are understood by Matlab with respect to the entire GUI figure and annotation does not accept the Parent property (that would solve the problem immediately, and curiously enough set( h ) or get( h ) do show Parent as one of the fields of h). Is there a simpler solution that calculating the position of the axes within the GUI figure and then computing the position of the annotation object with respect to the figure so it positions properly on the axes, which is rather a cumberome excercise?

Respuestas (1)

Ben11
Ben11 el 8 de Jul. de 2014
It might sound trivial, but what if you set the axis in which you want to add text the "current axis" just before actually placing the text?
Eg:
axes(YourAxis);
text(x,y,'YourString')
Is that what you mean?
  1 comentario
Adam
Adam el 11 de Jul. de 2014
No, it doesn't. It was the first thing I have tried.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Object Programming 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