setOptions

Sets the current component options.

Parameters

options Object

The component settings to update.

Example

<div id="progressbar" style="width: 100px; height: 100px;"></div>
<script>
    $("#progressbar").kendoCircularProgressBar({
        value: 50
    });

     setTimeout(function(){
        var progressbar = $("#progressbar").data("kendoCircularProgressBar");
        progressbar.setOptions({ indeterminate: true });
    },1000)
</script>
In this article