ai.aiAssistantWindow.animation.close.durationNumber

Defines the duration of the closing animation.

Example - configure AI AssistantWindow closing animation duration

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
     aiAssistantWindow: {
       animation: {
         close: {
           duration: 300
         }
       }
     }
   }
});
</script>