Quote Originally Posted by Maximus2 View Post
I would like my QwtText to have some padding
You could try to do some formatting using the rich text syntax or simply overload QwtPlotTextLabel::textRect():

Qt Code:
  1. QRectF YourTextLabel::textRect(
  2. const QRectF &rect, const QSizeF &textSize ) const
  3. {
  4. QRectF rect = QwtPlotTextLabel::textRect( rect, textSize );
  5. rerturn rect.adjusted( ... );
  6. }
To copy to clipboard, switch view to plain text mode 
Uwe