IChart.SuppressSpaceTick

Syntax

SuppressSpaceTick: Boolean;

Description

The SuppressSpaceTick property determines whether additional tick marks are displayed for skipped names of points of the category axis.

Comments

When the IChart.TickLabelSpacing property is used, additional scale tick marks are not displayed for skipped points' names. If the SuppressSpaceTick property is set to True (default), additional tick marks are not displayed. If the property is set to False, additional tick marks for skipped labels are displayed.

Example

Executing the example requires a form with a button named Button1 on the form, the ChartBox component and the UiErAnalyzer component named UiErAnalyzer1, which is used as a data source for ChartBox.

Class TESTForm: Form
    UiErAnalyzer1: UiErAnalyzer;
    ChartBox1: ChartBox;
    Button1: Button;
    
    Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    Begin
        ChartBox1.Chart.TickLabelSpacing := 2;
        ChartBox1.Chart.SuppressSpaceTick := False;
    End Sub Button1OnClick;
End Class TESTForm;

After clicking the Button1 button tick marks are displayed for the skipped labels.

See also:

IChart