0

Is it possible in agendaDay view that I can start the timings from 8am instead of 12am?

adeel41
  • 3,123
  • 1
  • 29
  • 25

1 Answers1

1

If you are looking to only have the agendaDay view start at 8am, then you can use View-Specific Options along with the minTime option like so.

$('#calendar').fullCalendar({
    views: {
        agendaDay: {
                 minTime: "8:00"
        }
    }
});

If you want all views to start at 8am then you would just use the minTime option in your calendar configuration like normal.

$('#calendar').fullCalendar({
    minTime: "8:00"
});
Ryan89
  • 1,216
  • 15
  • 20