animation.closeObject

Example - configure the close animation

<input id="dropdowntree"/>

<script>
$("#dropdowntree").kendoDropDownTree({
  dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 }],
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
});
</script>