dashboard-devexpress-dot-dashboardblazor-b6002675.md
Contains Data Inspector settings.
Namespace : DevExpress.DashboardBlazor
Assembly : DevExpress.Dashboard.v25.2.Blazor.dll
NuGet Package : DevExpress.Blazor.Dashboard
public class DxDataInspector :
DxSettingsComponent
Public Class DxDataInspector
Inherits DxSettingsComponent
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>
Object ComponentBase DevExpress.DashboardBlazor.Native.DxSettingsComponent DxDataInspector
See Also