Hi guys,

I'm trying to plot in real time several data in different plots. At firts 
it works great but after some time the window blocks but keeps plotting the 
data.

I'm getting the data from a thread. and the code I'm using to plot looks 
like this:

        self.pg_plot_one.plot(
           range(self.n)[d:],
           self.y1[d:],
           pen=(1, 3),
           antialias=True,
           name="x axis"
       )
        self.pg_plot_one.plot(
           range(self.n)[d:],
           self.y2[d:],
           pen=(2, 3),
           antialias=True,
           name="y axis"
       )


Any suggestions?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/ab3365fa-e10e-4d3f-8561-2788c81707fc%40googlegroups.com.

Reply via email to