Dear Customer,
Greetings from Syncfusion.
We can achieve your requirement using actionComplete event and kindly refer the below sample.
var scheduleObj = new ej.schedule.Schedule({
width: '100%',
height: '650px',
selectedDate: new Date(2019, 0, 10),
eventSettings: {
dataSource: data,
enableTooltip: true
},
actionComplete: OnActionComplete
});
scheduleObj.appendTo('#Schedule');
function OnActionComplete(args) {
if (this.currentView === "Week" || this.currentView === "Month")
this.eventSettings.enableTooltip = true;
else
this.eventSettings.enableTooltip = false;
}
Regards,
Karthi