Skip to main content
A newer version of this page is available. .

ASPxDashboard.OpenDashboard(String) Method

Loads a dashboard from a string containing a dashboard XML definition.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v18.2.Web.WebForms.dll

Declaration

public void OpenDashboard(
    string xml
)

Parameters

Name Type Description
xml String

A String value that specifies a dashboard XML definition.

Remarks

Note that the OpenDashboard method can be used only on the initial page loading (in the Page_Load event handler). To learn more about different methods of loading a dashboard, see Loading a Dashboard.

Note

Note that if you load a dashboard using ASPxDashboard.DashboardXmlPath or OpenDashboard, end-users will not be able to create new dashboards. To allow end-users to create new dashboards, create a dashboard storage using ASPxDashboard.DashboardStorageFolder or ASPxDashboard.SetDashboardStorage.

See Also