Back to Devexpress

ItemDataAxisPointTuple Interface

dashboard-js-devexpress-dot-dashboard-dot-data-e64b6da2.md

latest1.5 KB
Original Source

ItemDataAxisPointTuple Interface

Represents a tuple of axis points.

Declaration

ts
export interface ItemDataAxisPointTuple

Remarks

An ItemDataAxisPointTuple object uniquely identifies a section in an ItemData object by defining a set of axis points from different data axes (the ItemDataAxis class).

This set does not have to include axis points from all of the axes in an ItemData object.

To obtain the axis point belonging to the specified axis, pass the name of the required axis to the getAxisPoint method.

Methods

getAxisPoint Method

Returns the axis point belonging to the specified data axis.

Declaration

ts
getAxisPoint(
    axisName?: ItemDataAxisName
): ItemDataAxisPoint

Parameters

NameTypeDescription
axisNameItemDataAxisName

An ItemDataAxisName value that specifies the name of the data axis.

|

Returns

TypeDescription
ItemDataAxisPoint

An ItemDataAxisPoint object that is a point on the data axis.

|