in reply to Spreadsheet::WriteExcel, rotate text
It looks like you should create a format, then use set_rotation() on it.
Then just add the $vertical argument to the end of your write calls...my $vertical=$workbook->addformat(); $vertical->set_rotation(1); # letters run from top to bottom # 2 for 90 degs anticlockwise # 3 for 90 degs clockwise
Edit: D'oh, missed the merged column part. ++jmcnamara!$worksheet->write(0,0, "Title", $vertical);
|
|---|