Hi,

I found a minor bug, feel free to ignore it :) . If the vertical scale 
of a plot has numbers ~1E-6 the ylabel won't be visible. Example script:

#-------------------------------------------
import matplotlib.pyplot as plt
import numpy as np

x = np.arange(-10.0,10.0,0.1)
plt.plot(x,1E-6*np.sin(x))
plt.ylabel("Y Label")
plt.show()
#-------------------------------------------

The workaround is of course simple, just adjust figure.subplot.left.

Ubuntu 8.10, matplotlib svn (rev. 7032).

JLS


------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to