dashboard-devexpress-dot-dashboardaspnetcore-008eefbe.md
A wrapper that provides access to ViewerApiExtensionOptions.
Namespace : DevExpress.DashboardAspNetCore
Assembly : DevExpress.Dashboard.v25.2.AspNetCore.dll
NuGet Package : DevExpress.AspNetCore.Dashboard
public class DashboardViewerApiOptionBuilder
Public Class DashboardViewerApiOptionBuilder
The following members return DashboardViewerApiOptionBuilder objects:
Show 14 links
Use the DashboardExtensionsOptionBuilder.ViewerApi method to call the DashboardViewerApiOptionBuilder.
The code sample below shows how to configure the Web Dashboard’s viewer api extension:
@(Html.DevExpress().Dashboard("dashboardControl1")
.Width("100%")
.Height("100%")
.OnBeforeRender("onBeforeRender")
.Extensions(ext => {
ext.ViewerApi(options => {
// ...
});
})
)
Object DashboardViewerApiOptionBuilder
See Also