Hi Uwe,

First of all thanks for reply.
I tried to make my canvas background semi transparent and transparent by;
Qt Code:
  1. plotHandle->setWindowOpacity(0);
  2. plotHandle->setAttribute(Qt::WA_TranslucentBackground);
  3. plotHandle->setCanvasBackground(QColor(0,0,0,0));
  4. plotHandle->replot();
To copy to clipboard, switch view to plain text mode 

But this code block does't work, so I can't see behind my QwtPlot component's background where there is another widgets located.
How can I achieve this operation?
Thanks in advance.