IChartAxis.MinorTick

Syntax

MinorTick: Boolean;

Description

The MinorTick property allows to enable working with intermediate scale marks for each axis.

Example

Executing this example requires a form, a button named Button1 located on this form, the ChartBox and UiChart components and the UiErAnalyzer component named UiErAnalyzer1 that is used as the 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 Button1 additional scale marks are displayed on the Y axis.

See also:

IChartAxis