Contents Previous Next


Minimum Property (BDKAxisDefaults Object)

Description

Sets or returns the minimum value of the axis. This value is ignored if the AutoScale property is set to TRUE.

Syntax

object.Minimum

Arguments

None.

Return Value

(Double) – the minimum value of the axis.

Example

'Force the x-axis axis to run between 0 and 100 with 10 ticks:
With BDKApp.GraphDefaults.XAxis
    .AutoScale = FALSE
    .Minimum = 0
    .Maximum = 100
    .NumTicks = 10
End With