Skip to main content
A newer version of this page is available. .
All docs
V21.2

DxDataInspector Class

Contains Data Inspector settings.

Namespace: DevExpress.DashboardBlazor

Assembly: DevExpress.Dashboard.v21.2.Blazor.dll

NuGet Package: DevExpress.Blazor.Dashboard

Declaration

public class DxDataInspector :
    DxSettingsComponent

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>

Inheritance

Object
ComponentBase
DevExpress.DashboardBlazor.Native.DxSettingsComponent
DxDataInspector
See Also