aVadim483 / fast-excel-writer

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

Float value is not working for font size #87

Closed l205306 closed 1 month ago

l205306 commented 1 month ago
$sheet->writeTo('A1:B1', 'Report Title', [
    'text-align' => 'center',
    'font-style' => 'bold',
    'font-size' => 10.5
]);
$sheet->writeTo('A1:B1', 'Report Title', [
    'text-align' => 'center',
    'font-style' => 'bold',
])->applyFontSize(10.5);

image

aVadim483 commented 1 month ago

implemented in ver.6.1.1