IChartAxis.MinorTick

Syntax

MinorTick: Boolean;

Description

The MinorTick property enables working with minor tick marks for each axis.

Example

Executing the example requires a form, a button named Button1 on the form, the ChartBox and UiChart components and the UiErAnalyzer component named UiErAnalyzer1 that is used as a data source.

Class TESTForm: Form
    Button1: Button;
    UiErAnalyzer1: UiErAnalyzer;
    UiChart1: UiChart;
    ChartBox1: ChartBox;

    Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    Begin
        ChartBox1.Chart.AxisY.MinorTick := True;
    End Sub Button1OnClick;
End Class TESTForm;

After clicking the Button1 button additional tick marks are displayed on the Y axis.

See also:

IChartAxis