DashboardControl.LoadDashboard(String) Method
In This Article
Loads a dashboard from an XML file.
Namespace: DevExpress.DashboardWpf
Assembly: DevExpress.Dashboard.v24.2.Wpf.dll
NuGet Package: DevExpress.Wpf.Dashboard
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
path | String | A String that specifies the path to an XML file that contains the dashboard. |
#Remarks
The following code snippet shows how to load a dashboard located in the project’s Data folder:
C#
dashboardControl1.LoadDashboard("../../Data/dashboard1.xml");
See Also