First of all, thanks a lot for this useful stuff, its save a lot of time for me! Respect!
I found an error in the code, Robert write to the alignShrinktofit() "This doesn't actually work."
I digging a bit the code, because actually I need this style and I found why it is not working.
ExcelWriterXML_Style.php line 275:
if (!empty($this->shinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}
Change to this (one R is missing from the $this->shrinktofit)
if (!empty($this->shrinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}
After this modification the "alignShrinktofit()" style working very well.
Cheers
Karoly
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
First of all, thanks a lot for this useful stuff, its save a lot of time for me! Respect!
I found an error in the code, Robert write to the alignShrinktofit() "This doesn't actually work."
I digging a bit the code, because actually I need this style and I found why it is not working.
ExcelWriterXML_Style.php line 275:
if (!empty($this->shinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}
Change to this (one R is missing from the $this->shrinktofit)
if (!empty($this->shrinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}
After this modification the "alignShrinktofit()" style working very well.
Cheers
Karoly