DashboardViewModelBase Class
In This Article
A data-context for a Dashboard Control and Dashboard items that provides access to the IDashboardControlProvider.
Namespace: DevExpress.DashboardWpf
Assembly: DevExpress.Dashboard.v24.2.Wpf.dll
NuGet Package: DevExpress.Wpf.Dashboard
#Declaration
public class DashboardViewModelBase :
ViewModelBase
#Remarks
The following code snippet shows how to access to the Chart item’s template and style:
//...
IDashboardControlProvider provider = (IDashboardControlProvider)values[1];
ChartDashboardItem chartItem = provider.Dashboard.Items[itemName] as ChartDashboardItem;
//...
#Inheritance
Object
BindableBase
ViewModelBase
DashboardViewModelBase
See Also