In the trunk, I noticed that relim() followed by autoscale_view() do not have 
the same behavior as they did with the old transforms branch. For example:

l,=plot([1,2,3])
l.set_ydata([4,5,6])
gca().relim()
gca().autoscale_view()
draw()

used to produce the same output as

plot([4,5,6])

but now it is equivalent to 

plot([4,5,6])
ylim(1,6)

Darren

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to