vitaliy has asked for the wisdom of the Perl Monks concerning the following question:
The problem is that I have total of 20-30 charts to display, and all of them are over each other in the SpreadSheet. How can I position them, so that they will not overlap each other?foreach $curr_graph (sort keys %range_struct) { $Range = $Sheet->Range("$range_struct{$curr_graph}"); $Chart = $Excel->Charts->Add; $Chart->{Name} = "$curr_graph"; $Chart->{ChartType} = xlXYColumn; $Chart->Location(xlLocationAsObject, $Sheet->{Name}); $Chart = $Excel->ActiveChart; $Chart->SetSourceData({Source => $Range, PlotBy => xlColumns}); $Chart->{HasTitle} = 1; $Chart->ChartTitle->{Text} = "COMPARISON CHART ".$curr_graph; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Multiple Charts in Excel
by Grygonos (Chaplain) on Jun 23, 2003 at 16:21 UTC | |
by vitaliy (Initiate) on Jun 23, 2003 at 16:29 UTC | |
by Grygonos (Chaplain) on Jun 23, 2003 at 17:54 UTC |