http://qs321.pair.com?node_id=648085


in reply to Excel and Win32::OLE chart problems

The object $chart is an Excel ChartObject, which contains a Chart object, which has a property ChartType. In Excel, that'd be chart.Chart.ChartType In perl,

$chart->ChartType} = xl3DColumnClustered;
should be
$chart->Chart->{ChartType} = ...