Effacer les filtres
Effacer les filtres

Enable datacursor for certain axes

1 vue (au cours des 30 derniers jours)
Joe
Joe le 25 Juil 2012
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?

Réponses (2)

Tom
Tom le 26 Juil 2012
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 commentaire
Joe
Joe le 26 Juil 2012
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.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 26 Juil 2012
Sorry, no, datacursormode is a figure behavior.

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by