SuppressSpaceTick: Boolean;
The SuppressSpaceTick property determines whether additional tick marks are to be displayed for skipped names of points of the category axis.
When the IChart.TickLabelSpacing property is used additional scale marks are not displayed for skipped points' names. If the SuppressSpaceTick property is set to True (default), additional tick marks are not displayed. If this property is set to False, the additional tick marks for skipped labels are displayed.
Executing this example requires a form with a button on it named Button1, the ChartBox component and UiErAnalyzer 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 Button1 scale marks are displayed for the skipped labels.
See also: