Re: [Matplotlib-users] question about autoscale_view()

2007-04-25 Thread John Hunter
On 4/23/07, Eric Firing [EMAIL PROTECTED] wrote: The autoscaling mechanism does not keep track of plot elements, so it has no way of knowing what to change when you delete a line. You will have to keep track of the x and y extents of each element yourself, and manually reset the xlim and

Re: [Matplotlib-users] question about autoscale_view()

2007-04-23 Thread Eric Firing
Matthias Michler wrote: Hi everybody, some time ago I send the first mail concerning pylab.autoscale_view(). Unfortunately nobody reponsed - so I ask you again for any suggestions. If I should set up another example or explain it, please let me know. best regards and thanks in advance for

[Matplotlib-users] question about autoscale_view()

2007-02-13 Thread Matthias Michler
Hello everbody, sometimes I need an autoscaling when my new data points in a figure have small values compared to some deleted ones. So I thought ax.autoscale_view() would be the solution, but it seems to remember deleted data and so doesn't scale limits like I want. A little program showing