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

    A wrapper that provides access to DataInspectorExtensionOptions.

    Namespace: DevExpress.DashboardAspNetCore

    Assembly: DevExpress.Dashboard.v25.1.AspNetCore.dll

    NuGet Package: DevExpress.AspNetCore.Dashboard

    Declaration

    public class DataInspectorOptionBuilder

    Remarks

    The code sample below shows how to configure the Data Inspector options:

    @(Html.DevExpress().Dashboard("dashboardControl1")
        .Width("100%")
        .Height("100%")
        .OnBeforeRender("onBeforeRender")
        .Extensions(ext => {
            ext.DataInspector(options => {
                // ...
            });
        })
    )
    

    Inheritance

    Object
    DataInspectorOptionBuilder
    See Also