Hey all,
I am using a perl skript to write data in an excel sheet. With that data I want to generate a chart. So far everthing works fine, but I am not able to change the size of the hart. It is too small! Thanks in advance for your help
my $chart = $book -> Charts -> Add();
$chart->Location(xlLocationAsObject, $nametab);
$chart = $excel->ActiveChart;
$chart-> SetSourceData( { Source => $data, PlotBy => xlColumns } );
$chart->{ChartType} = xlLine;
$chart->{HasTitle} = 1;
$chart->ChartTitle->{Text} = "$namesch";
$chart->{HasLegend} = 0;
$chart->SeriesCollection(1)->Border->{Weight} = xlThick;
I am using a perl skript to write data in an excel sheet. With that data I want to generate a chart. So far everthing works fine, but I am not able to change the size of the hart. It is too small! Thanks in advance for your help
my $chart = $book -> Charts -> Add();
$chart->Location(xlLocationAsObject, $nametab);
$chart = $excel->ActiveChart;
$chart-> SetSourceData( { Source => $data, PlotBy => xlColumns } );
$chart->{ChartType} = xlLine;
$chart->{HasTitle} = 1;
$chart->ChartTitle->{Text} = "$namesch";
$chart->{HasLegend} = 0;
$chart->SeriesCollection(1)->Border->{Weight} = xlThick;