Is it possible to display a custom QWidget
on the QHeaderView
instead of just the generic string?
Also, is it possible to change the height of the horizontalHeaderItem
only? It crashes when I do this:
(ui->myTable->horizontalHeaderItem(0))->setSizeHint(QSize(200,300));
I solved it by adding headers programmatically in my
.cpp
file rather than on the design file.