Skip to main content
A newer version of this page is available. .

ElementSelectionMode Enum

Lists the values used to specify the selection mode of a chart element.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

[ResourceFinder(typeof(XtraChartsResFinder))]
public enum ElementSelectionMode

Members

Name Description
None

The selection of a chart element is disabled.

Single

Selects the only chart element.

ElementSelectionMode.Single

Multiple

Selects multiple chart elements.

ElementSelectionMode.Multiple

Extended

Selects multiple chart elements (while the SHIFT key is pressed) and selects/deselects chart elements (while the Ctrl key is pressed).

ElementSelectionMode.Extended

Related API Members

The following properties accept/return ElementSelectionMode values:

Library Related API Members
WinForms Controls ChartControl.SelectionMode
ChartModel.SelectionMode
ASP.NET MVC Extensions ChartControlSettings.SelectionMode
ASP.NET Web Forms Controls WebChartControl.SelectionMode

Remarks

The values listed by the ElementSelectionMode enumeration are used to set the ChartControl.SelectionMode, WebChartControl.SelectionMode and ChartControlSettings.SelectionMode properties.

See Also