fionbarr has asked for the wisdom of the Perl Monks concerning the following question:
}sub write_pie_chart { my $data_ref = shift; my $chart = $workbook->add_chart( type => 'Pie' ); # Configure the chart. $chart->add_series( categories => '=Table!$B$7:$B$12', values => '=Table!$C$7:$C$12', ); $chart->set_title( name => 'chart name' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: excel::write::xlsx change worksheet names
by Corion (Patriarch) on Jul 17, 2014 at 18:14 UTC | |
by fionbarr (Friar) on Jul 17, 2014 at 18:22 UTC |