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.v18.1.dll

Declaration

[ResourceFinder(typeof(XtraChartsResFinder))]
[TypeConverter(typeof(EnumTypeConverter))]
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 Web Forms Controls ChartControlSettings.SelectionMode
WebChartControl.SelectionMode

Remarks

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ElementSelectionMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also