Skip to main content

DashboardDataLoadingEventArgs.Data Property

Gets or sets data for the current data source.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public object Data { get; set; }

Property Value

Type Description
Object

Data for the current data source.

Remarks

Use the Data property to provide data for the current data source.

An object assigned to the Data property should implement the IEnumerable or IListSource interface.

To identify the data source for which the event has been raised, use the DataSourceEventArgs.DataSource property.

See Also