DxDataInspector Class
Contains Data Inspector settings.
Namespace: DevExpress.DashboardBlazor
Assembly: DevExpress.Dashboard.v24.2.Blazor.dll
Declaration
Remarks
Use the AllowInspectAggregatedData and AllowInspectRawData properties to enable the Data Inspector.
When both properties are true, each dashboard item caption contains the “Inspect Data” button. Click this button to invoke the Data Inspector window that contains two grids with raw and aggregated data. The window caption displays the dashboard item caption text.
When only one property is true, the window contains a single grid with raw or aggregated data depending on which property is enabled. The window caption displays the dashboard item caption text and the inspected data type (raw or aggregated) in parentheses.
<DxDashboard style="height: 800px;" Endpoint="api/dashboard">
<DxExtensions>
<DxDataInspector AllowInspectAggregatedData="true" AllowInspectRawData="true"></DxDataInspector>
</DxExtensions>
</DxDashboard>