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

DashboardViewer.DataLoadingError Event

Allows you to suppress the form containing errors that occur during data loading.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v19.1.Win.dll

Declaration

public event DataLoadingErrorEventHandler DataLoadingError

Event Data

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

Property Description
Errors Gets errors that occur during data loading.
Handled Gets or sets whether default actions are required when data loading errors occur.

Remarks

The DataLoadingError event is raised when one or more errors occur during data loading. The following form lists these errors.

DataLoadingErrorForm

You can obtain the list of errors using the DataLoadingErrorEventArgs.Errors event parameter. To suppress the form, set the DataLoadingErrorEventArgs.Handled property to true.

Note

To handle connection errors, use the DashboardViewer.ConnectionError event.

See Also