Hi to everybody.
Are there any tricks to deal with a large amount of datapoint in QwtPlot? If I draw 500'000 points it takes a couple of time on every redraw.
I've tried the following without success:

Qt Code:
  1. myQwtPlot.canvas()->setPaintAttribute( QwtPlotCanvas::PaintCached, false );
  2. myQwtPlot.canvas()->setPaintAttribute( QwtPlotCanvas::PaintPacked, false );
  3. myQwtPlotCure.setPaintAttribute( QwtPlotCurve::PaintFiltered, true );
To copy to clipboard, switch view to plain text mode 

I've also added the zoom-implementation from the examples. If I click and move the mouse to position the rubberband for the zoom, the qwtPlot freezes for about 3 seconds!

I'm new in Qwt and don't see any way to solve the problem --> plese help me.

Thanks in advance
elDell