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

contentHeight

Sets the height of the view area of the calendar.

Integer, "auto"

By default, this option is unset and the calendar’s height is calculated by aspectRatio.

If an integer is specified, the height of the view will be guaranteed to be that exact pixel height. If the contents will not fit within the height, scrollbars will appear.

If "auto" is specified, the view’s contents will assume a natural height and no scrollbars will be used.

Example usage of contentHeight:

var calendar = new FullCalendar.Calendar(calendarEl, {
  contentHeight: 600
});

Setter

You can dynamically set a calendar’s contentHeight after initialization:

calendar.setOption('contentHeight', 650);