Sara Lochtie
unread,May 24, 2013, 3:58:50 PM5/24/13You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
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!