Axis.ScaleType (Word)

Devuelve o establece el tipo de escala del eje de valores. Posibles valores de retorno son xlScaleLinear - Una escala lineal, xlScaleLogarithmic - Una escala logarítmica.


With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.Axes(xlValue).ScaleType = xlScaleLogarithmic 
 End If 
End With