http://www.perlmonks.org?node_id=1013017


in reply to Re^2: How to create a chart with data from database
in thread How to create a chart with data from database

:D http://cpansearch.perl.org/src/JMCNAMARA/Spreadsheet-WriteExcel-2.38/examples/chart_bar.pl
###################################################################### +######### # # Example 2. A minimal chart with user specified categories (X axis) # and a series name. # my $chart2 = $workbook->add_chart( type => 'bar' ); # Configure the series. $chart2->add_series( categories => '=Sheet1!$A$2:$A$7', values => '=Sheet1!$B$2:$B$7', name => 'Test data series 1', );