close
Closes the popup of the component.
Example - destroy the widget
<div id="signature"></div>
<script>
$("#signature").kendoSignature();
var signature = $("#signature").data("kendoSignature");
signature.open();
setTimeout(function () {
signature.close();
},2000);
</script>