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
###################################################################### +######### # # 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', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to create a chart with data from database
by terrykhatri531 (Novice) on Jan 12, 2013 at 10:05 UTC | |
by Anonymous Monk on Jan 12, 2013 at 10:21 UTC | |
by Anonymous Monk on Jan 12, 2013 at 10:47 UTC |