animation.close.durationNumber(default: 100)
The duration of the close animation in milliseconds.
Example
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [
{ text: "Item 1", value: 1 },
{ text: "Item 2", value: 2 }
],
animation: {
close: {
duration: 500
}
}
});
</script>
In this article