I am using phpexcel to generate excel document with PHP. the question is, how to make auto height row using phpexcel? many thanks :)
To change height of all rows to auto you can do:
foreach($xls->getActiveSheet()->getRowDimensions() as $rd) { $rd->setRowHeight(-1); }