Type Alias QRange

type QRange = {
    qMax?: number;
    qMaxInclEq?: boolean;
    qMin?: number;
    qMinInclEq?: boolean;
}
Index

Properties

qMax?: number

Highest value in the range

qMaxInclEq?: boolean

If set to true, the range includes the highest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 10 is included in the range of selections.

qMin?: number

Lowest value in the range

qMinInclEq?: boolean

If set to true, the range includes the lowest value in the range of selections (Equals to ). [bn(50500)] Example: The range is [1,10]. If qMinInclEq is set to true it means that 1 is included in the range of selections.