windowsforms-devexpress-dot-xtracharts-dot-chartcontrol-946fc578.md
The ChartControl.RuntimeSeriesSelectionMode property is now obsolete. Use the SeriesSelectionMode property instead.
Gets or sets the value specifying which diagram element is selected by the end-user’s click.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.UI.dll
NuGet Package : DevExpress.Win.Charts
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("The ChartControl.RuntimeSeriesSelectionMode property is now obsolete. Use the ChartControl.SeriesSelectionMode property instead.")]
public SeriesSelectionMode RuntimeSeriesSelectionMode { get; set; }
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<Obsolete("The ChartControl.RuntimeSeriesSelectionMode property is now obsolete. Use the ChartControl.SeriesSelectionMode property instead.")>
Public Property RuntimeSeriesSelectionMode As SeriesSelectionMode
| Type | Description |
|---|---|
| SeriesSelectionMode |
A SeriesSelectionMode enumeration value, specifying the selected element.
|
Available values:
| Name | Description |
|---|---|
| Series |
Only the entire series can be hot-tracked and selected at one time.
| | Point |
A single series point can be hot-tracked and selected at one time.
| | Argument |
Points of multiple series which correspond to the selected point argument are selected and hot-tracked.
|
Use the RuntimeSeriesSelectionMode property to choose whether one point or the whole series is selected when the end-user clicks a series point on a diagram.
Note
Currently this feature is in effect only for 2D Bar Series View and Pie and Doughnut Series Views.
See Also