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