I am trying to change day start time in fullcalendar without cutting any hours of the day in agendaWeek and agendaDay views
what I am doing is :
$('#calendar').fullCalendar({
minTime: "08:00:00" //8am
});
but the hours between 00:00 - 8:00 are not showing at all in the calendar view I tried to do
$('#calendar').fullCalendar({
minTime: "08:00:00", //8am
maxTime: "07:00:00" //7am
});
but this config is showing nothing.
am I missing something ?
or is it something in the fullcalendar's implementation where minTime and maxTime options have specific range of values ?
here is a fiddle