dashboard-devexpress-dot-dashboardwpf-dot-dashboardcontrol-f3be4af4.md
Gets or sets the opened dashboard.
Namespace : DevExpress.DashboardWpf
Assembly : DevExpress.Dashboard.v25.2.Wpf.dll
NuGet Package : DevExpress.Wpf.Dashboard
public Dashboard Dashboard { get; set; }
Public Property Dashboard As Dashboard
| Type | Description |
|---|---|
| Dashboard |
A Dashboard object that is the opened dashboard.
|
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
{
dashboardControl1.Dashboard = CreateDashboard(); ;
}
wpf-dashboard-how-to-bind-to-sql-database-file/CS/WpfDashboard_SqlDataSource/MainWindow.xaml.cs#L21
Dashboard dashboard = CreateDashboard();
dashboardControl1.Dashboard = dashboard;
}
See Also