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

DashboardDesigner.DataInspectorFormLoad Event

Occurs before the Data Inspector window displays. Allows you to access the window’s grid controls and change their settings.

Namespace: DevExpress.DashboardWin

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

NuGet Package: DevExpress.Win.Dashboard

Declaration

public event DataInspectorFormLoadEventHandler DataInspectorFormLoad

Event Data

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

Property Description
AggregatedDataGrid Provides access to the Grid control that displays aggregated data in the Data Inspector dialog.
AllowExportAggregatedData Gets or sets whether end users can export aggregated data from the Data Inspector.
AllowExportRawData Gets or sets whether end users can export raw data from the Data Inspector.
DashboardItemName Gets the name of the dashboard item whose data is displayed in the Data Inspector window.
RawDataGrid Provides access to the Grid control that displays raw data in the Data Inspector dialog.

Remarks

Use the DashboardDesigner.ShowDataInspector method to invoke the Data Inspector window.

When the Data Inspector window closes, the DashboardDesigner.DataInspectorFormClosing event occurs.

This example shows how to handle the DataInspectorFormLoadand DataInspectorFormClosing events to get access to the Grid controls in the Data Inspector window and change the grid settings.

View Example: How to Customize the Data Inspector Dialog

See Also