IChartSelectedSeries.DisplayMarkers

Syntax

DisplayMarkers: Boolean;

Description

The DisplayMarkers property determines whether the data series markers are displayed. If this property is set to True, the series markers are displayed on the chart. If this property is set to False, the markers are not displayed.

The default value is True.

Example

Executing the example requires a form, the Button1 button located on this form, the ChartBox component and UiChart component used as a data source.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    SelectedSeries: IChartSelectedSeries;               
Begin
    SelectedSeries:= UiChart1.Chart.SelectedSeries;
    SelectedSeries.DisplayMarkers:= False;        
End Sub Button1OnClick;

After executing the example, the data series markers are not displayed.

See also:

IChartSelectedSeries