Skip to main content

DashboardItemMouseActionWpfEventArgs.GetAxisPoint(String) Method

Obtains the AxisPoint object located at the specified axis and related to the visual element under the test point.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Dashboard.v23.2.Wpf.dll

NuGet Package: DevExpress.Wpf.Dashboard

Declaration

public AxisPoint GetAxisPoint(
    string axisName
)

Parameters

Name Type Description
axisName String

A string that specifies the name of the data axis.

Returns

Type Description
AxisPoint

An AxisPoint object that is the data axis point.

Remarks

When a pivot cell in the PivotDashboardItem is clicked, the method with the “Row” parameter returns the AxisPoint highlighted in the image below:

e.GetAxisPoint(DevExpress.DashboardCommon.DashboardDataAxisNames.PivotRowAxis);

Tip

Standard axis names are contained in the static DashboardDataAxisNames class.

The retuned AxisPoint is the second level (the highest level, the path is Beverages -> Chang) data point located at the specified axis - the Row axis.

See Also