WebDashboardExporter(DashboardConfigurator) Constructor
In This Article
Initializes a new instance of the WebDashboardExporter class for the specified DashboardConfigurator instance.
Namespace: DevExpress.DashboardWeb
Assembly: DevExpress.Dashboard.v24.2.Web.dll
NuGet Package: DevExpress.Web.Dashboard.Common
#Declaration
public WebDashboardExporter(
DashboardConfigurator dashboardConfigurator
)
#Parameters
Name | Type | Description |
---|---|---|
dashboard |
Dashboard |
A Dashboard |
#Remarks
If you are using the DashboardConfigurator‘s API for the ASPxDashboard control or ASP.NET MVC Dashboard extension, pass the DashboardConfigurator‘s default instance to the WebDashboardExporter
constructor.
using DevExpress.DashboardWeb;
//...
WebDashboardExporter exporter = new WebDashboardExporter(DashboardConfigurator.Default);
See Also