Re: Plotting with PyQwt

2013-05-24 Thread Sara Lochtie
isn't correct* On Friday, May 24, 2013 12:58:50 PM UTC-7, Sara Lochtie wrote: > Hi, > > > > I'm trying to plot temperature vs. time using Qwt. I have temp data that i > get in real time and I want to plot against time. So I thought I would have > to use QwtPlot and QwtPlotCurve, so I did this

Plotting with PyQwt

2013-05-24 Thread Sara Lochtie
Hi, I'm trying to plot temperature vs. time using Qwt. I have temp data that i get in real time and I want to plot against time. So I thought I would have to use QwtPlot and QwtPlotCurve, so I did this first: self.tempGraph = Qwt.QwtPlot(self) curve = QwtPlotCurve() curve.setData(x, temp)