1

I'm using Laravel Excel plugin and have a problem with column widths. See the picture below, you can see the mistake:

enter image description here

Here is the correct view:

enter image description here

I tried $sheet->setAutoSize('true'); but it is not working.

How can I auto size column to the maximum content width of any cell in that column?

pnuts
  • 58,317
  • 11
  • 87
  • 139
Cihan Küsmez
  • 1,967
  • 5
  • 22
  • 41

1 Answers1

9
$sheet->getColumnDimension($column)->setAutoSize(true) ;

Duplicate of PHPExcel auto size column width

Community
  • 1
  • 1
Eric V.
  • 418
  • 7
  • 15