Hi Marko,
Greetings from Syncfusion support.
Based on your requirement we have created a sample with the help of openDelay, mouseTrail and position property of the tooltip and created event of the Scheduler like the below.
[app.component.html]
<ejs-schedule #scheduleObj width='100%' height='650px' [selectedDate]="selectedDate" [eventSettings]="eventSettings" [(currentView)]="currentView" (created)="onCreated($event)">
</ejs-schedule>
[app.component.ts]
onCreated() {
// Assigning the tooltip object to the tooltipObj variable.
let tooltipObj = (this.scheduleObj.element as any).ej2_instances[1];
// Disable the tooltip to follow the mouse pointer position
tooltipObj.mouseTrail = false;
// Setting tooltip open delay
tooltipObj.openDelay = 1000;
// Setting the position to the tooltip
tooltipObj.position = 'TopCenter';
}
Kindly try the above sample and get back to us if you would need any further assistance.
Regards,
Ravikumar Venkatesan