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

contentHeight

Sets the height of the view area of the calendar.

Integer, Function, "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 a function is specified, this function will be called every time a height update is requested. This function should return a pixel value.

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);