IChartSelectedSeries.MarkerType

Syntax

MarkerType: ChartMarkerType;

Description

The MarkerType property determines the marker types of the selected data series of the chart.

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: = True;
        SelectedSeries.MarkerSize: = 2;
        SelectedSeries.MarkerType: = ChartMarkerType.Rhombus;        
    End Sub Button1OnClick;

After executing the example, the markers for the selected data series are displayed in the shape of diamonds.  

See also:

IChartSelectedSeries