[ASK] Suggestion - how to further format and stylize generated XLSX file? #149
Answered
by
andrej-gravik
andrej-gravik
asked this question in
Q&A
-
I guess colouring the excell cells and aligning them is beyond the scope of this library but if I want to do so, what do you suggest?
Thanks for any suggestions! |
Beta Was this translation helpful? Give feedback.
Answered by
andrej-gravik
Nov 29, 2023
Replies: 1 comment 3 replies
-
Not sure whether it's the ideal way of doing so, but I think you could hook into the generation via the Sheet::listen(BeforeSheet::class, function ($sheet) {
$sheet->getDelegate()->getStyle('1')->getFont()->setSize(8);
}); Or you extend the Export class and add the required methods to it and use this class. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basicly What you suggested and then add some sugar around it to make it work :)