value

Change the value of the gauge.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: {
    value: 50
    },
    scale: {
    min: 0,
    max: 100
    }
});
setTimeout(function(){
    $("#gauge").data("kendoRadialGauge").value(20);
},1000)
</script>
In this article