New to Kendo UI for jQueryStart a free 30-day trial

The animation that will be used when the AI AssistantWindow opens.

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

Defines the duration of the opening animation.

<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: {
         open: {
           duration: 400
         }
       }
     }
   }
});
</script>

The effect that will be used when the AI AssistantWindow opens.

<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: {
         open: {
           effects: "fadeIn"
         }
       }
     }
   }
});
</script>