These docs are for an old release. Info on upgrading to version 2/3
edit doc

contentHeight 1.4.2

Will make the calendar’s content area a pixel height.

Integer

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

Example usage of contentHeight:

$('#calendar').fullCalendar({
  contentHeight: 600
});

Setter

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

$('#calendar').fullCalendar('option', 'contentHeight', 650);