benjamin54
benjamin54

Reputation: 1300

jQuery Knob display

I'm using this jQuery knob.

http://anthonyterrien.com/knob/

I'm using semi circle & i need to show min. & max limits below the knob. By default it doesn't show limits. Also is it possible to show current knob value (shown at middle of knob) to be shown on dial surface?

Upvotes: 0

Views: 1501

Answers (1)

Snake Eyes
Snake Eyes

Reputation: 16764

Did you read documentation from github ?

<script>
$('.dial')
    .trigger(
        'configure',
        {
        "min":10,
        "max":40,
        "fgColor":"#FF0000",
        "skin":"tron",
        "cursor":true
        }
    );
</script>

github

Upvotes: 3

Related Questions