ChartBaseView.SelectionMode Property
Specifies how many chart elements an end user can select simultaneously.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public SelectionMode SelectionMode { get; set; }
Property Value
Type | Description |
---|---|
SelectionMode | A value that specifies the chart element selection behavior. |
Available values:
Name | Description |
---|---|
Multiple | Multiple chart elements (series or points) can be selected. |
None | The selection of chart elements is disabled. |
Single | Only one chart element (series or point) can be selected. |
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.