Plotting with PyQwt

Sara Lochtie sara.lochtie at gmail.com
Fri May 24 15:58:50 EDT 2013


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)



x is the time and temp is the data I have collected.

I know this isn't current, but I just don't know how to go about it. I haven't used Qwt before.

If anyone has some tips or advice for me that would be great!





More information about the Python-list mailing list