Skip to main content
A newer version of this page is available. .

DashboardControl.DrillDownPerformed Event

Occurs after a drill-down is performed.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Dashboard.v19.1.Wpf.dll

Declaration

public event DrillActionEventHandler DrillDownPerformed

Event Data

The DrillDownPerformed 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 DrillDownPerformed 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 DashboardControl.DrillUpPerformed event is raised.

Note

The DrillActionEventArgs.Values property returns the DashboardSpecialValues.NullValue or DashboardSpecialValues.OthersValue values instead of null or “Others” values, respectively.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DrillDownPerformed 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.

See Also