These docs are for an old release. Info on upgrading to v6
edit doc

dayCount

Sets the exact number of days displayed in a custom view, regardless of weekends or hiddenDays.

Integer

When a view’s range is specified with a duration, hidden days will simply be omitted, and the view will stretch to fill the missing space. However, if you specify dayCount, you are guaranteed to see a certain number of days.

Example for a Custom View:

var calendar = new Calendar(calendarEl, {
  weekends: false,
  initialView: 'timeGridFourDay',
  views: {
    timeGridFourDay: {
      type: 'timeGrid',
      dayCount: 4
    }
  }
});

Simpler example for a calendar with one view:

var calendar = new Calendar(calendarEl, {
  weekends: false,
  initialView: 'timeGrid',
  dayCount: 4
});