Quote Originally Posted by shriramrs31 View Post
Only the plots are empty. The result is same for any example / custom application that uses plot.
Please try the simple_plot example as it is it does absolutely nothing special - no overlays etc.

What happens, when you disable the internal backing store of the canvas:

Qt Code:
  1. QwtPlotCanvas *canvas = new QwPlotCanvas();
  2. canvas->setPaintAttribute( QwtPlotCanvas::BackingStore, false );
  3. plot->setCanvas( canvas );
To copy to clipboard, switch view to plain text mode 
Uwe