Issue 314: hide scrollbars
Status:  Done
Owner: ----
Closed:  Feb 2010
Reported by mit...@gmail.com, Feb 1, 2010
Hello, 

I have a small problem. 
How can I delete scrollbars on week and day?
I would like to resize height calendar to auto size (height). 

How can I do this ?
Feb 5, 2010
Project Member #1 adamrs...@gmail.com
you can't do this currently. you could set the height property 
(http://arshaw.com/fullcalendar/docs/display/height/) to be tall enough so they dont 
display
Status: Done
Apr 28, 2011
#2 bober.br...@gmail.com
You can do this but it's not ideal.  When the user switches to Week view run this (only have to run it the first time):

$('.fc-view-agendaWeek > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);

When the user switches to Day view run this:

$('.fc-view-agendaDay > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);


Jun 14, 2011
#3 wim%dewi...@gtempaccount.com
Voting for this as well. Month mode can scale to whatever height is set, but week and day mode should be (optionally) "scroll bar free".
Nov 24, 2011
#4 courtl...@tyrantinc.com
Agreed, would also like to have it auto-resize to fit the content, rather than having scrollbars.

Sep 19, 2012
#5 dav...@petstar.co.uk
Thank you for this work around
$('.fc-view-agendaWeek > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);