aVadim483 / fast-excel-writer

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

height style not working in header #48

Closed lollita closed 9 months ago

lollita commented 10 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 9 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 9 months ago

I have updated and it now work. Ty.