I'm not a Win32::OLE user, but that loose curly bracket looks suspect:
I tried to throw your code into a file like this:$chart->ChartType} = xl3DColumnClustered;
but I still get errors.use strict; use warnings; use Win32::OLE; my ($vtfalse,$sheet); # Create the chart # my $chart = $sheet->ChartObjects->Add(1, 175, 457, 300); $chart->ChartType = 'xl3DColumnClustered'; $chart->Chart->ChartWizard({Source =>$sheet->Range("D5:D12")}); $chart->Chart->SeriesCollection(1)->{Values}=$sheet->Range("D5:D12"); $chart->Chart->SeriesCollection(1)->{XValues}=$sheet->Range("B5:B12"); $chart->Chart->SeriesCollection(1)->{Values}=$sheet->Range("D5:D12"); $chart->Chart->SeriesCollection(1)->{Name}=$sheet->Range("B5:B12"); $chart->Chart->{HasLegend} = $vtfalse; $chart->Chart->{HasDataTable} = $vtfalse; $chart->Chart->SeriesCollection(1)->{HasDataLabels} = 1;
Guess I'm missing something else. Can you post some minimal complete code that illustrates your problem?Can't call method "ChartObjects" on an undefined value at K:\Desktop\3 +d-chart.pl line 7.
In reply to Re: Excel and Win32::OLE chart problems
by andyford
in thread Excel and Win32::OLE chart problems
by the_hawk_1
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |