Setting width of spreadsheet cell using PHPExcel

后端 未结 7 976
萌比男神i
萌比男神i 2021-01-31 13:20

I\'m trying to set the width of a cell in an Excel document generated with PHPExcel with:

$objPHPExcel->getActiveSheet()->getColumnDimensionByColumn(\'C\')         


        
7条回答
  •  故里飘歌
    2021-01-31 14:01

    The correct way to set the column width is by using the line as posted by Jahmic, however it is important to note that additionally, you have to apply styling after adding the data, and not before, otherwise on some configurations, the column width is not applied

提交回复
热议问题