Having nice background colors in Spreadsheet::WriteExcel « Perl
Having nice background colors in Spreadsheet::WriteExcel
Wednesday 7 October 2009 @ 10:03 am

If you want to make Excel spreadsheet using perl module Spreadsheet::WriteExcel with, for example, orange or yellow backgorund in some cells, you can use the built-in palette, but the colours there may burn your eyes :-)

How to have nice colours in spreadsheets: use set_custom_color($index, $red, $green, $blue)

For example:

my $light_orange = $workbook->set_custom_color(43, 255, 226, 171);
my $ligth_yellow = $workbook->set_custom_color(42, 255, 255, 204);
my $light_purple = $workbook->set_custom_color(40, 225, 204, 255);

Share and Enjoy:
  • Print
  • Digg
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • email
  • LinkedIn
  • MySpace
  • Reddit
  • RSS
  • Slashdot
  • StumbleUpon
  • Suggest to Techmeme via Twitter
  • Technorati
  • Twitter
  • Twitthis
  • Yahoo! Bookmarks
  • Yahoo! Buzz

See also:

  1. Unicode horror – nice tool to convert
  2. Nice people I met at YAPC::EU
  3. Nice people I met at YAPC::EU – continued
  4. Perl WTFs – last in function
  5. Utf8 in web perl application (LAMP) – dbi, mysql

Tags: ,

Comments (0) - Posted in work by Lech  



Leave a comment