>>>>> "Etrade" == Etrade Griffiths <[EMAIL PROTECTED]> writes:
Etrade> Hi new to Matplotlib and struggling to make a plot that
Etrade> has three lines plotted on it: two are supposed to plot on
Etrade> the LH y axis and the third on the RH y axis. The code so
Etrade> far is
ax1 = fig.add_axes([0.1, 0.1, 0.8, 0.8])
ax2 = fig.add_axes([0.9, 0.1, -0.8, 0.8])
^
[left, bottom, width, height]
negative numbers are not supported. I don't know what kind of layout
you want, but start with something like
ax1 = fig.add_axes([0.1, 0.1, 0.4, 0.8])
ax2 = fig.add_axes([0.55, 0.1, 0.4, 0.8])
and once you have a working plot tweak from there.
JDH
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-users