Hi,
When I use the QwtPlot,I have a problem with it.If I set the size(width or height) of the plot larger than 32767,and I set the scale div of axis equal with the size(width or height) of plot.There will appear a black area in the bottom of the plot.Why?? Here is some code and picture in forrow.

Qt Code:
  1. QwtPlot *plot = new QwtPlot();
  2. plot->enableAxis(QwtPlot::xBottom,false);
  3. div=linearEngine->divideScale(0,33000,50,0,10);
  4. plot->setAxisScaleDiv(QwtPlot::yLeft,div);
  5. plot->setFixedSize(200,33000);
  6. plot->replot()
  7. ;
To copy to clipboard, switch view to plain text mode 

plot.jpg
Thanks for you help!