Skip to main content

ChartBaseView.SetSelected(Int32, Int32, Boolean) Method

Specifies whether a series point with the specified pointIndex of a series with the given seriesIndex is selected.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public void SetSelected(
    int seriesIndex,
    int pointIndex,
    bool isSelect
)

Parameters

Name Type Description
seriesIndex Int32

The zero-based index of a series whose series point changes selection state.

pointIndex Int32

The zero-based index of a series point that changes selection state.

isSelect Boolean

true, if a point / series should be selected; otherwise, false.

Remarks

When the SelectionKind property is set to Series you can to pass any number as the pointIndex parameter.

See Also