Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartBaseView.SelectionMode Property

Gets or sets how many chart elements an end user can select simultaneously. This is a bindable property.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
public SelectionMode SelectionMode { get; set; }

#Property Value

Type Default Description
SelectionMode Single

The chart element selection behavior.

Available values:

Name Description
Multiple

Multiple chart elements (series or points) can be selected.

SelectionMode.Multiple

None

The selection of chart elements is disabled.

Single

Only one chart element (series or point) can be selected.

SelectionMode.Single

#Remarks

Use the SelectionMode property to specify whether an end user can select several elements (series or series points) at the same time. The SelectionKind property defines the element type selected when an end user taps a data point.

To disable the selection of chart elements, set the SelectionMode to None.

See Also