IChartAxis.Min

Syntax

Min: Double;

Description

The Min value determines a minimum on an axis.

Example

This example assumes that there is the ChartAxis object of the IChartAxis type.

Automatic minimum must not be calculated for the chart.

If required, the user can cancel calculation of automatic minimum by setting the IChartAxis.AutoMin property to False.

Sub Min;

Var

ChartAxis : IChartAxis;

Begin

ChartAxis.AutoMin := False;

ChartAxis.Min := 540;

End Sub Min;

After executing the example the minimum value on the axis is equal to 540.

See also:

IChartAxis | IChartAxis.AutoMin