I have a span of cells (1 column, 5 rows) where I would like display text on a 90 degree angle. I know I'll need to resize the geometry, but for now I can't even get the text to show up. In the middle row, I'm doing this within my subclassed QItemDelegate::paint()
QString data = "String";
painter->rotate( 90 );
painter->drawText( opt.rect, Qt::AlignLeft, data );
Basically I get nothing printed in this case. A few other questions lead me to code like this. Am I missing something?