WebChartControl.RuntimeSelection Property
OBSOLETE
Use the Selection
Gets or sets a value indicating if chart elements can be selected by end-users at runtime.
Namespace: DevExpress.XtraCharts.Web
Assembly: DevExpress.XtraCharts.v24.2.Web.dll
NuGet Package: DevExpress.Web.Visualization
#Declaration
[DefaultValue(false)]
[Obsolete("Use the SelectionMode property instead.")]
public bool RuntimeSelection { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Boolean | false | true if the selection is enabled; otherwise, false. |
#Remarks
Important
The Runtime
Use the RuntimeSelection property to enable selection of some of the chart’s elements at runtime. If selection is enabled, then if an end-user selects any element, the WebChartControl.ObjectSelected event occurs.
Note
Selection enabled by setting the Runtime
To implement manual selection of chart’s elements, the WebChartControl.SetObjectSelection and WebChartControl.ClearSelection methods should be used.