Set text in GUI figure axis

11 views (last 30 days)
John
John on 14 Mar 2012
Hi,
I would like to annotate a plot in an axes in a gui built with guide.
in the text call how do I specify the figure (for the gui) and the axis I want it to plot in?
Currently if I simply write:
text(xtp_ac,ytp_ac,'ATF-01');
I get it plotting correctly on the first call, but on the next update it doesn't plot and it opens a new figure.
I think I need to do something along the lines of:
text('FigureHandle',____,'AxesHandle',_____,xtp_ac,ytp_ac,'ATF-01');
however when I do this the figure just continuously opens and closes a couple of times a second rendering it useless.
The program I have written plots an objects position as it moves around over a map. I want to be able to give it a label to identify it as I have more than one plotted at the same time.
Thanks in advance.

Accepted Answer

Jacob Halbrooks
Jacob Halbrooks on 14 Mar 2012
A look through the documentation for TEXT properties shows the Parent property, which lets you specify an axes:
ax=axes;
text(0.5, 0.5, 'My text', 'Parent', ax);
To give an identifier to a TEXT you create, consider using the Tag property.
  2 Comments
Jan
Jan on 14 Mar 2012
Specifying the axes handle is enough, because this defines the corresponding figure uniquely already.
John
John on 14 Mar 2012
Thank you to both of you!

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!