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

DashboardItemMouseActionWpfEventArgs.GetSlice(String) Method

Returns the data slice for the specified axis by the AxisPoint related to the visual element located under the test point.

Namespace: DevExpress.DashboardWpf

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

Declaration

public MultiDimensionalData GetSlice(
    string axisName
)

Parameters

Name Type Description
axisName String

A string that is the standard data axis name.

Returns

Type Description
MultiDimensionalData

A MultiDimensionalData object that is the slice of the client data.

Remarks

The GetSlice method returns a MultiDimensionalData object that is the data slice by the AxisPoint located at the specified axis.

The following code returns the the data slice displayed in the picture below as the highlighted row at the Chang AxisPoint.

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

See Also