Axis used in a visualization.

interface Axis {
    base?: "" | "2" | "10";
    bounds?: string[];
    label?: string;
    prefix?: string;
    scale?: AxisScale;
    suffix?: string;
}

Properties

base?: "" | "2" | "10"

Radix for formatting axis values.

bounds?: string[]

The extents of the axis in the form [lower, upper]. Clients determine whether bounds are inclusive or exclusive of their limits.

label?: string

Description of the axis.

prefix?: string

Label prefix for formatting axis values.

scale?: AxisScale
suffix?: string

Label suffix for formatting axis values.

MMNEPVFCICPMFPCPTTAAATR