views:

66

answers:

1

I have many narrow columns with very long labels. I want to rotate the labels by 90 degrees. Is it possible?

+2  A: 

You will probably have to subclass QTableWidgetItem and implement your own vertical text painting. Then use setHorizontalHeaderItem() on your table to point to an instance of your new widget.

Arnold Spence