I'm fiddling with excel graphs created in a perl script and trying to set minimum and maximum axes however I don't seem to be able to get my head around the VBA to Perl Conversion.
Please can you help.
I have tried this a few different ways, but here is what I have now.
$chart1->{Chart}->Axes(xlCategory)->MinorUnit => 0;
$chart1->{Chart}->Axes(xlCategory)->MajorUnit => 100;
I have also tried the following.
$chart1->{Chart}->Axes(xlCategory)->MinimumScale => 0;
$chart1->{Chart}->Axes(xlCategory)->MaximumScale => 100;
Many thanks in advance.
Micro