interface NumberAxisOptions {
    centerX?: number;
    centerY?: number;
    children?: Widget[];
    division?: number;
    progress?: number;
    style?: NumberAxisStyle;
    trend?: Trend;
    x?: number;
    y?: number;
}

Hierarchy (view full)

Properties

centerX?: number
centerY?: number
children?: Widget[]
division?: number

The ratio of pixels to 1 tick, i.e. the division value

progress?: number
trend?: Trend

The trend of the axis, i.e. the function that maps the division to the axis value For example, if the division is 50, the trend is (x => x / 50), this is default value, too

x?: number
y?: number