New to Kendo UI for jQueryStart a free 30-day trial

Destroy

methods

Prepares the Gauge for safe removal from the DOM.

Detaches event handlers and removes data entries in order to avoid memory leaks.

<div id="gauge"></div>
<script>
    $("#gauge").kendoArcGauge({
        value: 50
    });
    setTimeout(function(){
        kendo.destroy($("#gauge"));
        $("#gauge").remove();
    },1000);
</script>
Not finding the help you need?
Contact Support