Issue
I am using phpexcel to generate excel document with PHP.
the question is, how to make auto height row using phpexcel?
many thanks :)
Solution
$excel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
Should set the row height to 'auto' for row 1.
Answered By - pkavanagh Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.