How to copy XTickLabels?

5 次查看(过去 30 天)
Petra
Petra 2012-12-5
Dear Matlab-Users,
I try to copy an axis which is integrated in a GUI into a new figure. In this context, I face a problem with the XTickLabeling. The XTickLabels are not copied correctly. This piece of code demonstrates the problem:
data=rand(10,1);
f1=figure; ax1=axes('Parent',f1); plot(data); set(gca,'XTickLabel',[11:20])
f2=figure; copyobj(allchild(ax1),axes('Parent',f2))
f3=figure; copyobj(get(f1,'children'),f3);
ax1 is the axis I wish to duplicate. Looking at f2, it seems that allchild(ax1) does not include the XTickLabels. Figure f3 contains the correct result. But to copy all figure components is not an option for my real application, since the axis is part of a GUI. How can I copy only the axis, but get the XTickLabeling correct? Please help!
Thanks in advance
Petra

采纳的回答

Matt Fig
Matt Fig 2012-12-5
编辑:Matt Fig 2012-12-5
xticlabel is not a child of the axes, it is a property of the axes.
f1=figure;
ax1=axes;
plot(data);
set(gca,'XTickLabel',[11:20])
% Now make a new figure and copy the old axes.
f2=figure;
ax2 = copyobj(ax1,f2)
Now everything about the ax1 is copied to f2. If need be, you can always do something like:
set(ax2,'xticklab',get(ax1,'xticklab'))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by