I set height and contentHeight to the same value and it seems to do the trick.
CSS
#calendar { height:1000px; }
JS:
var calHeight = 1000; $('#calendar').fullCalendar({ height:calHeight, contentHeight:calHeight });
Edit:
I found that when updating between views, it displayed a scroll when I don't want it. Added:
.fc-scroller { overflow-y: hidden !important; }
Adam maloney
source share