I'm trying to create a table but no matter that I set the column witdths to the table is the full width of the page.
Here are the table properties I'm using:
$tableProperties = array(
'border'=>'single',
'borderColor'=>'#000000',
'borderWidth'=>10,
'tableAlign'=>'center',
'tableLayout'=>'fixed',
'textProperties'=>array('fontSize'=>11,'textAlign'=>'center'),
'columnWidths'=>array(100,100)
);
I've also tried it without the 'tableLayout' property as well as varying values for 'ColumnWidths'.
I need both columns to be equal widths, and the table to be approximately 2.5 inches wide. I'd settle for using the 'width' property of tableData but I can't find any code examples.
Thanks