Represents the values held by an Axis.

interface AxisValues {
    expression: string;
    isCategorical: boolean;
    name: string;
    parts: AxisPart[];
}

Hierarchy (view full)

Properties

expression: string

Gets the full expression of this instance, including multi-part delimiters and surrounding "<>" brackets if the axis is in categorical mode.

isCategorical: boolean

Gets a value indicating whether the axis is categorical or continuous.

name: string

Gets the name of this instance.

parts: AxisPart[]

Gets the AxisParts that this axis has. The parts are derived from the current AxisValues.expression.