Like in the other scheduler components it would be very nice to highlight the hoverd timeslot and show the start time of the slot when hovering
template: ` <kendo-scheduler [style.width.px]="1250" [kendoSchedulerBinding]="events" [selectedDate]="selectedDate"> <ng-template kendoSchedulerTimeSlotTemplate let-date="date"> <strong class="on-hover-only">{{ date | kendoDate : 't' }}</strong> Other content </ng-template> <kendo-scheduler-week-view> </kendo-scheduler-week-view> </kendo-scheduler> `, encapsulation: ViewEncapsulation.None, styles: [` .k-scheduler .k-scheduler-content td .on-hover-only { display: none; } .k-scheduler .k-scheduler-content td:hover { background-color: lightblue; } .k-scheduler .k-scheduler-content td:hover .on-hover-only { display: inline-block; } `]