Skip to main content

DashboardViewer.LoadDashboard(String) Method

Loads a dashboard from an XML file.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v23.2.Win.dll

NuGet Package: DevExpress.Win.Dashboard

Declaration

public void LoadDashboard(
    string filePath
)

Parameters

Name Type Description
filePath String

A String that specifies the path to an XML file that contains the dashboard.

Remarks

You can open a dashboard in one of the following ways.

All these actions raise the DashboardViewer.DashboardChanged event.

To access the dashboard after it has been opened, use the DashboardViewer.Dashboard property.

To save a dashboard to a file or a stream, use the Dashboard.SaveToXml method.

Note

If the DashboardDesigner / DashboardViewer control is placed in the MDI child form, load dashboards in the Shown event handler instead of Load.

The following code snippet shows how to load a dashboard located in the project’s Data folder:

dashboardViewer1.LoadDashboard("../../Data/dashboard1.xml");

The following code snippets (auto-collected from DevExpress Examples) contain references to the LoadDashboard(String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also