|
label table - remove grid lines |
Posted by Greg White on Dec-21-2010 22:40 |
|
Using Perl & Chart director 5, how do I remove all the gridlines? I can get it to work on the added rows by using:
$table->appendRow()->setBackground($perlchartdir::Transparent,$perlchartdir::Transparent);
but can't figure out how to get them removed from the first row |
Re: label table - remove grid lines |
Posted by Greg White on Dec-21-2010 23:04 |
|
I got it figured out, you use:
$table->getRowStyle(0)->setBackground($perlchartdir::Transparent,$perlchartdir::Transparent); |
|