On Tue, Nov 4, 2008 at 7:29 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote:
> Can you be more specific about what is going wrong?  The zoom magnifier
> seems to work fine for me with or without twinx, but perhaps we just
> have different expectations of how it works.  Could you perhaps provide
> screenshots?

Note that only one of the two axes can get the events, and that is
determined by the axes zorder.  So if you want ax1 to get the events

  ax1 = fig.add_subplot(111)
  ax1t = ax1.twinx()
  ax1.set_zorder(10)
  ax1t.set_zorder(1)

JDH

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to