fcharts-js - v0.3.0
    Preparing search index...

    Interface ProgressOptions

    interface ProgressOptions {
        color?: string;
        height?: number;
        label?: string;
        limit?: number;
        max?: number;
        theme?: Partial<SvgTheme>;
        width: number;
    }
    Index

    Properties

    color?: string

    Fill color. Default a neutral blue. Pass a STATUS_COLORS value (or your own) for over/near/ok semantics — this primitive stays minimal and does not derive status itself.

    height?: number

    Track height in px. Default 4 (the thin inline KPI bar).

    label?: string

    Accessible-label prefix. Default 'Progress'.

    limit?: number

    Optional cap/target, drawn as a vertical tick at this value (same units as value/max).

    max?: number

    The full-track value (the 100% denominator). Default 100.

    theme?: Partial<SvgTheme>
    width: number