blessed-components - v1.20.0
    Preparing search index...

    Interface ThresholdRange

    One qualitative numeric range.

    interface ThresholdRange {
        end?: number;
        label: string;
        marker?: string;
        start?: number;
        tone?: ThresholdTone;
    }
    Index

    Properties

    end?: number

    Inclusive upper bound. Defaults to the supplied domain max.

    label: string

    Human-readable range label.

    marker?: string

    Marker rendered before the label.

    start?: number

    Inclusive lower bound. Defaults to the supplied domain min.

    Semantic meaning available to adapters and formatter callbacks.