Hi,

I am overriding this method with:
Qt Code:
  1. return QRectF(
  2. QPointF(...),
  3. QPointF(...)
  4. );
To copy to clipboard, switch view to plain text mode 

Looking at the returned rectangle, I see
(xp=2446578.0, yp=193.72, w=6793.0, h = -193.72)

The intention is that the y axis goes from 0 to 193.72. That doesn't work with this rectangle.
The resulting QwtPlotCurve shows a y axis with a strange range [0,1600]

changing h to 0 gives a more reasonable output, but still from 50 to 300.

how is the logic work on top of the bounding rectangle?

Thanks,