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

ASPxDashboard.DashboardLoading Event

Allows you to load a dashboard at runtime.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v18.2.Web.WebForms.dll

Declaration

public event DashboardLoadingWebEventHandler DashboardLoading

Event Data

The DashboardLoading event's data class is DashboardLoadingWebEventArgs. The following properties provide information specific to this event:

Property Description
DashboardId Gets the dashboard identifier.
DashboardXml Gets or sets the dashboard XML definition.

Remarks

The DashboardLoading event is raised when the ASPxDashboard loads a dashboard allowing you to provide dashboard XML definition at runtime. Use the event parameter’s DashboardLoadingWebEventArgs.DashboardId property to identify which dashboard should be loaded. Then, assign the appropriate dashboard XML definition to the DashboardLoadingWebEventArgs.DashboardXml property.

DashboardLoading can be used along with the following events to manage dashboards within a storage.

See Also