dashboard-devexpress-dot-dashboardaspnetcore-efcb76b4.md
A wrapper that provides access to DataInspectorExtensionOptions.
Namespace : DevExpress.DashboardAspNetCore
Assembly : DevExpress.Dashboard.v25.2.AspNetCore.dll
NuGet Package : DevExpress.AspNetCore.Dashboard
public class DataInspectorOptionBuilder
Public Class DataInspectorOptionBuilder
The following members return DataInspectorOptionBuilder objects:
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 => {
// ...
});
})
)
Object DataInspectorOptionBuilder
See Also