dashboard-devexpress-dot-dashboardcommon-dot-drillactioneventargs-452cd7f4.md
Gets values from the current drill-down hierarchy.
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public DashboardDataSet Values { get; }
Public ReadOnly Property Values As DashboardDataSet
| Type | Description |
|---|---|
| DashboardDataSet |
A DashboardDataSet object that holds values from the current drill-down hierarchy.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Values 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-linked-interactivity/CS/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.cs#L63
string itemName = e.DashboardItemName;
DashboardDataRow row = e.Values[0];
object value = row[row.Length - 1];
wpf-dashboard-linked-interactivity/VB/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.vb#L56
Dim itemName As String = e.DashboardItemName
Dim row As DashboardDataRow = e.Values(0)
Dim value As Object = row(row.Length - 1)
See Also