Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.
  • The page you are viewing does not exist in the .NET Core 3.0+ platform documentation. This link will take you to the parent topic of the current section.

DashboardsModule.AddDashboardData<T>(IObjectSpace, String, String) Method

Creates a dashboard data object from the specified XML string if there is no dashboard data with the specified title parameter in the database.

Namespace: DevExpress.ExpressApp.Dashboards

Assembly: DevExpress.ExpressApp.Dashboards.v20.2.dll

NuGet Package: DevExpress.ExpressApp.Dashboards

Declaration

public static T AddDashboardData<T>(
    IObjectSpace objectSpace,
    string title,
    string xml
)
    where T : IDashboardData

Parameters

Name Type Description
objectSpace IObjectSpace

An IObjectSpace object that specifies the Object Space.

title String

A string specifying the dashboard title.

xml String

A string specifying the dashboard configuration in XML format.

Type Parameters

Name
T

Returns

Type Description
T

A dashboard data object.

Remarks

To recreate the predefined dashboard, first delete the Dashboard in the DashboardData ListView and then restart the application.

An example of using this method is provided in the Create a Predefined Dashboard and Add it to the Navigation topic.

See Also