DashboardViewer.LoadDashboard(Stream) Method
Loads a dashboard from a stream.
Namespace: DevExpress.DashboardWin
Assembly: DevExpress.Dashboard.v24.1.Win.dll
NuGet Package: DevExpress.Win.Dashboard
Declaration
Parameters
Name | Type | Description |
---|---|---|
stream | Stream | A Stream object that contains the dashboard. |
Remarks
You can open a dashboard in one of the following ways.
- Create and assign an instance of the Dashboard class to the DashboardViewer.Dashboard property.
- Specify the dashboard URI via the DashboardViewer.DashboardSource property.
- Use the LoadDashboard method to open a dashboard from a file or stream.
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. You can use the Dashboard.LoadFromXml method to load a dashboard definition from a file or a stream to the existing dashboard.
Note
If the DashboardDesigner / DashboardViewer control is placed in the MDI child form, load dashboards in the Shown event handler instead of Load.