destroy
Prepares the Sparkline for safe removal from the DOM.
Detaches event handlers and removes data entries in order to avoid memory leaks.
Example
<div id="sparkline"></div>
<script>
var sparkline = $("#sparkline").kendoSparkline({
type: "column",
series: [{
data: [10, 15, 8, 12]
}]
}).data("kendoSparkline");
sparkline.destroy();
</script>
In this article