mm-jsr
    Preparing search index...

    Interface ConfigAttrs

    interface ConfigAttrs {
        container: HTMLElement;
        initialValues: number[];
        max: number;
        min: number;
        step: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    container: HTMLElement

    Container, that will contain all the modules.

    initialValues: number[]

    Initial values for JSR. Determines number of supported values at all.

    max: number

    Maximum value JSR can accept

    min: number

    Minimum value JSR can accept

    step: number

    Step between values (can be float)

    for min: 0, and max: 100, and step: 1 it gives you 101 possible values
    
    for step: 0.1 it gives you 1001 possible values