フィルターのクリア

Enable datacursor for certain axes

1 回表示 (過去 30 日間)
Joe
Joe 2012 年 7 月 25 日
I have a gui with two sets of axes. One of the axes displays an image and has an associated ButtonDownFcn to track clicks. The other axis has a plot, which I want to be able to use the datacursor on. Is there an easier solution than using window callbacks to change datacursor behavior depending on the mouse position? Anybody?

回答 (2 件)

Tom
Tom 2012 年 7 月 26 日
The datatip won't show up if you hide the axes handle,e.g.
AX(1)=subplot(2,1,1);
plot(rand(10,1))
AX(2)=subplot(2,1,2);
plot(rand(10,1))
datacursormode on
set(AX(2),'HandleVisibility','Off')
  1 件のコメント
Joe
Joe 2012 年 7 月 26 日
Thanks! I'm having problems with that, though. One issue is that I replot those axes and address them as handles.image. I tried setting handle visibility back on when I replot and then switching it back off, but now MATLAB just hangs up whenever I click the image. That may also have something to do with the fact that I have a callback tied to the image being displayed on those axes.

サインインしてコメントする。


Walter Roberson
Walter Roberson 2012 年 7 月 26 日
Sorry, no, datacursormode is a figure behavior.

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by