Interface NumericRangeOptions

interface NumericRangeOptions {
    end: number;
    endInclusive?: boolean;
    start: number;
    state?: FacetValueState;
}

Properties

end: number

The ending value of the numeric range.

endInclusive?: boolean

Whether to include the end value in the range.

false

start: number

The starting value of the numeric range.

The current facet value state.

idle