aVadim483 / fast-excel-writer

Lightweight and very fast XLSX Excel Spreadsheet Writer in PHP
MIT License
142 stars 26 forks source link

height style not working in header #48

Closed lollita closed 4 months ago

lollita commented 5 months ago

I have:

$headStyle = [
    'font' => ['style' => 'bold'],
    'text-align' => 'center',
    'vertical-align' => 'center',
    'text-wrap' => true,
    'height' => 36,
];

$sheet->writeHeader($fld, $headStyle);

all work except height. also sheet->setRowHeight(1, 36); in header not work

also sheet->setRowHeight(1, 36); in header work only if $sheet->writeHeader($fld);

how to do?

aVadim483 commented 4 months ago

Which version are you using? I tested it on the latest version and found no errors, the row height is set correctly

lollita commented 4 months ago

I have updated and it now work. Ty.