Hi team,
Please provide an animate property part of the Tooltip interface and all tooltip-related components:
https://www.telerik.com/kendo-angular-ui/components/charts/api/TooltipComponent/
https://www.telerik.com/kendo-angular-ui/components/charts/api/ValueAxisCrosshairTooltipComponent/
https://www.telerik.com/kendo-angular-ui/components/charts/api/SeriesTooltipComponent/
..etc
Currently, the tooltip animations can be disabled through the tooltipInstance.tooltip property of the Chart reference:
@ViewChild('chart') public chart: ChartComponent;
ngAfterViewInit() {
this.chart.tooltipInstance.animate = false;
}