Re: [Matplotlib-users] Axises autoscaling in animated plot

2010-07-23 Thread aliko
The problem here is probably with the blitting. You make a copy of the background before plotting the data. Before you plot the data, the axes have no clue what's its limits are supposed to be. In your example, it won't know until you do the plotting. Then when you restore the

Re: [Matplotlib-users] Axises autoscaling in animated plot

2010-07-23 Thread aliko
Although the curves now are fitting in the box, the axes data does not updated and freezes at some initial values. I'm also reworked example in order to use two Y axises one to the left and one at the right. And the second plot attached to the right axis is not autoscaled as the first does.

[Matplotlib-users] Axises autoscaling in animated plot

2010-07-22 Thread aliko
Could please anyone help me to get axises autoscaling in following example? I took it from the examples and slightly modified it to remove all unecessary things trying to make it as short as possible. Thanks in advance! import sys from matplotlib.figure import Figure from

[Matplotlib-users] anumated plot with autscaling axises

2010-07-09 Thread aliko
Good day! Could You please tell me how can I get axises autoscaling in the animated plot example. I've take an example and have modifyed it slightly so the second line in plot gets out of bounding box during animation. What I need is autoscaling of axises during animation. Please point mee