필터 지우기
필터 지우기

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