>>>>> "Miriam" == Miriam Gerrits <[EMAIL PROTECTED]> writes:

    Miriam>    Hi,

    Miriam>    Is it possible in python/matplotlib to link the x-axis
    Miriam> in the subplots. So if you zoom in in one of the graphs of
    Miriam> the subplot, that then the other subplots also zoom in. In
    Miriam> Matlab this function is called 'linkaxis'.


ax1 = subplot(211)
ax1.plot(rand(20))

ax2 = subplot(212, sharex=ax1)
ax2.plot(rand(20))

JDH

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to