Previous Next


ScaleFactorValue Property (RDKAxisDefaults Object)

Description

Sets or returns the value of a numeric scale factor. See the ScaleFactorType property for more information about scale factors. This property only has effect if the AutoScale property is FALSE and the ScaleFactorType property is set to RDKScaleFactorNumeric. The scale factor is a logarithmic scale. Thus a value of 3 means a scaling of 10^3.

Syntax

object.ScaleFactorValue

Arguments

None.

Return Value

(Integer) – the scale factor.

Example

'Make a y-axis scale factor of 10^3:
With RDKApp.GraphDefaults.YAxis
    .AutoScale = False
    .Minimum = 0
    .Maximum = 10000
    .NumTicks = 10
    .ScaleFactorType = RDKScaleFactorNumeric
    .ScaleFactorValue = 3
End With