Closed ishamshur closed 2 years ago
Hi,
- PhpSpreadsheet has a setAutoSize() function which sets the automatic column size by content. Do you have something similar? Or do you have to manually set the width and height for each column?
Yes, now you can, see https://github.com/aVadim483/fast-excel-writer#height-and-width
Well, now you can insert active hyperlinks into cells
// Write URL as simple string (not hyperlink)
$sheet->writeCell('https://google.com');
// Write URL as an active hyperlink
$sheet->writeCell('https://google.com', ['hyperlink' => true]);
// Write text with an active hyperlink
$sheet->writeCell('Google', ['hyperlink' => 'https://google.com']);
Hi. Trying to switch from PhpSpreadsheet to your solution and have a few questions: