I need to know how to determine column widths using percentage.
I'm playing around with example_011, the ColoredTable example. I'd like to know how to set each column width as a percentage of the page width minus the margins.
This code did not do what I expected:
(I only want 2 cols, the first 60% the second 40%)
$pw = $this->getPageWidth();
$w = array(($pw/60), ($pw/40));
Is this possible with TCPDF?