WebChartControl.SelectedItems Property
Gets the collection of selected items (chart points and series) and business data objects (in the case of data binding) of the WebChartControl object.
Namespace: DevExpress.XtraCharts.Web
Assembly: DevExpress.XtraCharts.v19.2.Web.dll
Declaration
public IList SelectedItems { get; }
Public ReadOnly Property SelectedItems As IList
Property Value
Type |
Description |
IList |
A list which contains selected chart points, series and business data objects (in the case of data binding).
|
Use the SelectedItems property to access the collection of chart points, series and business data objects.
Note
When the chart control is connected to a data source, the SelectedItems property returns a collection of business data objects (stored in the SeriesPoint.Tag property) instead of selected series points.
See Also