GUI: Text note scrolls outside axes limits

I have a an axes object within a GUI that displays digital on/off data. I have added a text note to each rising edge showing its index in the sequence (i.e., Edge01, Edge02, etc). Due to the number of rising edges and the length of the data vector, users often use zoom and pan when inspecting the data.
My problem is that when the user has zoomed in on a section of data, then pans left/right, the text notes do not disappear with the data when they move outside the x-axis limits. Actually the text notes pan off the axes into the figure area. This does not happen with zoom. How can I remedy this? Matlab and Google searches result in the empty set.
Thanks in advance.

 채택된 답변

Joseph Cheng
Joseph Cheng 2015년 5월 8일
편집: Joseph Cheng 2015년 5월 8일

1 개 추천

Well what you need to do is turn clipping on.
x = 1:10;
y = randi(10,1,10).^2;
figure,plot(x,y);
yble = y>=50;
h = text(x(yble),y(yble),'a','clipping','on')

댓글 수: 1

CAM
CAM 2015년 5월 8일
Face-palm .
Can't believe I missed that in the help-documentation. Thanks.
(I swear I tried a dozen combinations of keywords in my searches, but did not find the link you provided. Thanks for the additional information).

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Exploration에 대해 자세히 알아보기

제품

태그

질문:

CAM
2015년 5월 8일

댓글:

CAM
2015년 5월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by