Chart.AutoScaling (Word)
True if Microsoft Word scales a 3D chart so that it is closer in size to the equivalent 2D chart. The RightAngleAxes property must be True.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.RightAngleAxes = True
.Chart.AutoScaling = True
End If
End With