Visualization
    Preparing search index...

    Interface Axis

    Represents an axis of the Mod Visualization.

    interface Axis {
        expression: string;
        isCategorical: boolean;
        name: string;
        parts: AxisPart[];
        setExpression(value: string): void;
    }

    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.

    Methods

    • Sets the full axis expression to the specified value.

      Parameters

      • value: string

      Returns void