animation.close.duration Number
Defines the duration of the close animation.
Example - setting the duration of the close animation
<span id="target">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoPopover({
template: "Content description",
animation: {
close: {
duration: 1000
}
}
});
});
</script>