value

Gets or sets the value of the gauge.

Example

<div id="gauge"></div>
<script>
    $("#gauge").kendoCircularGauge({
        value: 50
    });

    setTimeout(function(){
        $("#gauge").data("kendoCircularGauge").value(20);
    },1000);
</script>
In this article