Back to Devexpress

DashboardControl.Dashboard Property

dashboard-devexpress-dot-dashboardwpf-dot-dashboardcontrol-f3be4af4.md

latest3.1 KB
Original Source

DashboardControl.Dashboard Property

Gets or sets the opened dashboard.

Namespace : DevExpress.DashboardWpf

Assembly : DevExpress.Dashboard.v25.2.Wpf.dll

NuGet Package : DevExpress.Wpf.Dashboard

Declaration

csharp
public Dashboard Dashboard { get; set; }
vb
Public Property Dashboard As Dashboard

Property Value

TypeDescription
Dashboard

A Dashboard object that is the opened dashboard.

|

Remarks

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the Dashboard property.

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.

wpf-dashboard-olap-data-provider/CS/WpfDashboard_OlapDataProvider/MainWindow.xaml.cs#L19

csharp
{
    dashboardControl1.Dashboard = CreateDashboard(); ;
}

wpf-dashboard-how-to-bind-to-sql-database-file/CS/WpfDashboard_SqlDataSource/MainWindow.xaml.cs#L21

csharp
Dashboard dashboard = CreateDashboard();
    dashboardControl1.Dashboard = dashboard;
}

Implements

Dashboard

See Also

DashboardControl Class

DashboardControl Members

DevExpress.DashboardWpf Namespace