
Originally Posted by
Vortex
1. As you can see in the attached image, when i zoom on a plot it draws some horizontal lines near the top border where the line is outside the scale (red arrows).
This is a problem of the curve clipping. Fixed in SVN trunk - thanks for reporting.
It you want to stay with rc3 you can disable polygon clipping:
QwtPlotCurve::setPaintAttribute(QwtPlotCurve::ClipPolygons, false);
To copy to clipboard, switch view to plain text mode

Originally Posted by
Vortex
2. Another bug is that the QwtPlotPicker has stopped working. I have slots connected to selected(QRectF) and moved(QRectF) and it seems these signals are not emitted anymore.
The signals that exist are:
void selected
( const QRectF & );
void moved( const QPointF & );
void selected( const QRectF & );
To copy to clipboard, switch view to plain text mode
I checked a picker with a QwtPickerDragRectMachine, where everything was fine.
Uwe
Bookmarks