Visualization
    Preparing search index...

    Interface AxisValues

    Represents the values held by an Axis.

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

    Hierarchy (View Summary)

    Index

    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.