I created a simple recurring event with night and day format (23:00 - 01:30) and never-ending repeat schedule on day view. which does not renders on morning day schedule on (00:00 - 01:30).
public events: SchedulerEvent[] = [{
id: 1,
title: 'Breakfast',
start: new Date('2018-10-20T08:00:00'),
end: new Date('2018-10-21T02:30:00'),
recurrenceRule: 'FREQ=DAILY;'
}];
the above does not renders the schedule for (00:00 - 01:30) but if I add count with recurrenceRule its works.
recurrenceRule: 'FREQ=DAILY;COUNT=10;', - but in my case count is not required.
attached screenshot for reference.