Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChartControl.RuntimeSeriesSelectionMode Property

OBSOLETE

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.v24.2.UI.dll

NuGet Package: DevExpress.Win.Charts

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("The ChartControl.RuntimeSeriesSelectionMode property is now obsolete. Use the ChartControl.SeriesSelectionMode property instead.")]
public SeriesSelectionMode RuntimeSeriesSelectionMode { get; set; }

#Property Value

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.

SeriesSelectionMode

Point

A single series point can be hot-tracked and selected at one time.

SeriesSelectionMode.Point

Argument

Points of multiple series which correspond to the selected point argument are selected and hot-tracked.

SeriesSelectionMode.Argument

#Remarks

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