Skip to main content
All docs
V25.1
  • DxDataInspector Class

    Contains Data Inspector settings.

    Namespace: DevExpress.DashboardBlazor

    Assembly: DevExpress.Dashboard.v25.1.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