DashboardControl.DrillUpPerformed Event
Occurs after a drill-up is performed.
Namespace: DevExpress.DashboardWpf
Assembly: DevExpress.Dashboard.v24.1.Wpf.dll
NuGet Package: DevExpress.Wpf.Dashboard
Declaration
Event Data
The DrillUpPerformed event's data class is DrillActionEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
DashboardItemName | Gets the name of the dashboard item. |
DrillDownLevel | Gets the drill-down level. |
Values | Gets values from the current drill-down hierarchy. |
The event data class exposes the following methods:
Method | Description |
---|---|
IsNullValue(Object) | Returns whether the specified value is DashboardSpecialValues.NullValue. |
IsOthersValue(Object) | Returns whether the specified value is DashboardSpecialValues.OthersValue. |
Remarks
The DashboardControl.DrillUpPerformed event is raised when end-users drill down into the specified dashboard item’s element. When an end-user returns to the previous detail level (drill up), the DrillUpPerformed event is raised.
The example demonstrates how to synchronize Master Filter and Drill-Down actions between different dashboards:
Note
The DrillActionEventArgs.Values property returns the DashboardSpecialValues.NullValue or DashboardSpecialValues.OthersValue values instead of null or “Others” values, respectively.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DrillUpPerformed event.
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.