Hi Dipak,
Greetings from Syncfusion Support.
We could achieve your requirement of showing two appointments in a cell by changing the work cell height using cssClass property and for the same we have shared a sample for your reference which can be viewed from the following link.
.schedule-app.e-schedule .e-timeline-view .e-work-cells,
.schedule-app.e-schedule .e-timeline-month-view .e-work-cells,
.schedule-app.e-schedule .e-timeline-view .e-resource-cells, .schedule-app.e-schedule .e-timeline-month-view .e-resource-cells {
height: 120px;
}
var scheduleOptions = {
width: '100%',
height: '650px',
selectedDate: new Date(2018, 3, 4),
views: ['TimelineDay', 'TimelineWeek', 'TimelineWorkWeek', 'TimelineMonth', 'Agenda'],
currentView: 'TimelineWeek',
cssClass: 'schedule-app',
group: {
resources: ['Projects', 'Categories']
},
…
}
Also, if you want to view all the appointments of a day in Scheduler UI irrespective of that "+n more" indicator, then you can set rowAutoHeight property to true.
Regards,
Nevitha