Re: [Matplotlib-users] Updating tick labels when using animation

2009-06-18 Thread Elan Pavlov
Hi John, I solved the bug. In my application I have several threads. One of the threads updates the graph on a timer and another gets data from the application in order to plot. The thread updating the limits was based on data coming from the application. As I stated this is a two part process whe

Re: [Matplotlib-users] Updating tick labels when using animation

2009-06-17 Thread John Hunter
On Wed, Jun 17, 2009 at 5:27 PM, Elan Pavlov wrote: > Hi, > I'm using an animated graph in which most of the time I don't want it > to autoscale (due to speed). Once in a while I want it to change the > limits of the y-axis. In order to do this I use set_ylim and follow by > a canvas.draw(). Howeve