resize
Adjusts the widget layout to match the size of the container.
Example
<div id="progressbar" style="width: 100px; height: 100px;"></div>
<script>
$("#progressbar").kendoCircularProgressBar({
value: 50
});
$("#progressbar").css({ width: "200px", height: "200px" })
.data("kendoCircularProgressBar").resize();
</script>