tags:

views:

105

answers:

1

I am using a Q3Table object and wanted to change the width of the vertical header column. Does anyone know how to do this? It seems i can only adjust the height of the header cell but not the width. Thanks

+2  A: 

You want to use Q3Table::setLeftMargin. This will set the width of the vertical header.

void Q3Table::setLeftMargin ( int m )
Sets the left margin to be m pixels wide. The verticalHeader(), which displays row labels, occupies this margin.
David Dibben