interface NumberPlaneOptions {
    axisXOptions?: NumberAxisOptions;
    axisYOptions?: NumberAxisOptions;
    centerX?: number;
    centerY?: number;
    children?: Widget[];
    grid?: boolean;
    gridOptions?: LineOptions;
    progress?: number;
    style?: NumberPlaneStyle;
    unit?: boolean;
    unitFont?: string;
    x?: number;
    y?: number;
}

Hierarchy (view full)

Properties

axisXOptions?: NumberAxisOptions
axisYOptions?: NumberAxisOptions
centerX?: number
centerY?: number
children?: Widget[]
grid?: boolean
gridOptions?: LineOptions
progress?: number
unit?: boolean
unitFont?: string
x?: number
y?: number