How to annotate specific axes in a GUI

3 visualizzazioni (ultimi 30 giorni)
Adam
Adam il 8 Lug 2014
Commentato: Adam il 11 Lug 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?

Risposte (1)

Ben11
Ben11 il 8 Lug 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 Commento
Adam
Adam il 11 Lug 2014
No, it doesn't. It was the first thing I have tried.

Accedi per commentare.

Categorie

Scopri di più su Graphics Object Programming in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by