corelibraries-devexpress-dot-xtracharts-fa9cd61e.md
Lists the values used to specify the selection mode of a chart element.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder))]
public enum ElementSelectionMode
<ResourceFinder(GetType(XtraChartsResFinder))>
Public Enum ElementSelectionMode
| Name | Description |
|---|---|
None |
The selection of a chart element is disabled.
|
| Single |
Selects the only chart element.
|
| Multiple |
Selects multiple chart elements.
|
| Extended |
Combines the Single and Multiple selection modes’ behaviors. Click an element to select it. To select/deselect multiple elements, click them while the Ctrl key is pressed.
|
The following properties accept/return ElementSelectionMode values:
| Library | Related API Members |
|---|---|
| WinForms Controls | ChartControl.SelectionMode |
| ChartModel.SelectionMode | |
| HeatmapControl.SelectionMode | |
| ASP.NET MVC Extensions | ChartControlSettings.SelectionMode |
| ASP.NET Web Forms Controls | WebChartControl.SelectionMode |
The values listed by the ElementSelectionMode enumeration are used to set the ChartControl.SelectionMode, WebChartControl.SelectionMode and ChartControlSettings.SelectionMode properties.
See Also