- or download this
$newworksheet->Activate();
$Excel->ActiveWindow->{DisplayGridlines} = 'False';
- or download this
Selection.TickLabels.AutoScaleFont = False
With Selection.TickLabels.Font
.Name = "Arial"
...
.ColorIndex = xlAutomatic
.Background = xlAutomatic
End With
- or download this
$Excel->Selection->ThickLabels({AutoScaleFont => 0});
$Excel->Selection->ThickLabels({Font => {Size => 8}});