How to annotate specific axes in a GUI

6 次查看(过去 30 天)
Adam
Adam 2014-7-8
评论: Adam 2014-7-11
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?

回答(1 个)

Ben11
Ben11 2014-7-8
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?

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by