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

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

Declaration

[Browsable(false)]
[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.

Note

To use the RuntimeSeriesSelectionMode property, make sure that the ChartControl.RuntimeSelection is set to true.

See Also