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

DashboardControl.DashboardItemMouseDoubleClick Event

Occurs when an end-user double-clicks a dashboard item.

Namespace: DevExpress.DashboardWpf

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

Declaration

public event DashboardItemMouseActionWpfEventHandler DashboardItemMouseDoubleClick

Event Data

The DashboardItemMouseDoubleClick event's data class is DashboardItemMouseActionWpfEventArgs. The following properties provide information specific to this event:

Property Description
DashboardItemName Gets the name of the dashboard item. Inherited from DashboardItemMouseWpfEventArgs.
Data Gets the data displayed in the dashboard item.

The event data class exposes the following methods:

Method Description
GetAxisPoint() Obtains the AxisPoint object located at the top priority axis and related to the visual element under the test point.
GetAxisPoint(String) Obtains the AxisPoint object located at the specified axis and related to the visual element under the test point.
GetDeltas() Gets a list of delta descriptors related to the visual element located under the test point.
GetMeasures() Gets a list of measure descriptors related to the visual element located under the test point.
GetSlice() Returns the data slice for the Default axis by the AxisPoint related to the visual element located under the test point.
GetSlice(String) Returns the data slice for the specified axis by the AxisPoint related to the visual element located under the test point.
GetUnderlyingData() Returns underlying data related to the visual element located under the test point.
GetUnderlyingData(IList<String>) Returns underlying data related to the visual element located under the test point.
GetUnderlyingData(String, IList<String>) Returns underlying data related to the visual element located under the test point.
GetUnderlyingData(String) Returns underlying data related to the visual element located under the test point.

Remarks

Use the e.DashboardItemName property to obtain the dashboard item name for which the event is raised.

To obtain the data related to the double-clicked dashboard item element, use the following methods:

The DashboardItemMouseDoubleClick event retrieves data from different dashboard item’s visual elements:

The DashboardItemMouseDoubleClick event has the following limitations:

See Also