Re: Qt trending component
You can have a look at qwt and its QwtPlotDirectPainter. With it you can create an oscilloscope or trending graph, that only plots new data.
This is included as example "oscilloscope" in the qwt-package.
As far as I am aware you won't get a permanent history with this approach though. When the graph is full it needs to erase everything and start from an empty plot, because the directpainter has no means to "overplot".
If you need to keep a history visible at all times, you will have to let go of only plotting new data, but qwt offers methods to subsample the curves to make plotting faster.
Joh
Re: Qt trending component
Have you looked at Qwt?
D'oh! Pipped at the post :)
Re: Qt trending component
Thanks for the replies. Yes Qwt is on the table for review, good to know where to look in there.
No one used anything else?