How can i print fixed text on UIAxes?

조회 수: 7 (최근 30일)
Alessandro Meda
Alessandro Meda 2022년 6월 1일
편집: Voss 2022년 6월 6일
I'm working on an program created with app designer. I used the UIAxes and i wanted to print a couple of information on it, i tried with 'text' but the problem is that the axis of the plot are not always the same so the text will not always be in the same position and most important when i zoom the text move outside the box of the plot.
So is there a way to print something that stays steady (for example top-left) in the plot?

채택된 답변

Voss
Voss 2022년 6월 1일
You can set the text's Units to 'normalized' so that the text Position is relative to the axes Position, rather than relative to the axes XLim and YLim.
Example:
ax = axes('XLim',[-2 2],'YLim',[-2 2]);
t = text( ...
'Parent',ax, ...
'String','some text', ...
'Units','normalized', ...
'Position',[0 1]); % top-left
% just for demo, copy stuff to a new figure:
copyobj(gca(),figure())
% now change the axes limits, text stays in top-left:
set(ax,'XLim',[-10 10],'YLim',[50 150])
  댓글 수: 7
Voss
Voss 2022년 6월 3일
("Answer" from @Alessandro Meda moved here:)
Thank you, it worked perfectly
Voss
Voss 2022년 6월 3일
편집: Voss 2022년 6월 6일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (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