Mmh, On Sun, Sep 26, 2010 at 10:56 PM, Jae-Joon Lee <[email protected]> wrote: > > Did you try autoscale_view method? > > http://matplotlib.sourceforge.net/api/axes_api.html?highlight=autoscale#matplotlib.axes.Axes.autoscale_view > > Please post a sample script that reproduces the problem. >
I'm wondering if I'm doing something wrong then. Just now I was
writing some notes about this for a tutorial, and tried this code:
line, = plt.plot([1,2,3], label='my data')
plt.grid()
plt.title('My title')
x = np.linspace(0, 1)
y = x**2
line.set_data(x, y)
ax = gca()
ax.autoscale_view()
plt.draw()
but I get the result shown in the screenshot. Am I misusing
autoscale_view? As best I can tell from the docstring, I'm making
correct use of it, but perhaps I'm missing something...
Cheers,
f
<<attachment: autoscale.png>>
------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________ Matplotlib-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-users
