I am trying to fit the fullcalendar
to the size of screen. I tried using css
styling but the making is not dynamic. Any other way where the size of fullcalendar
will resize
itself when user zooms in/out or the zoom % has no effect on fullcalendar
size?
Solved it.
I have referred to this link
and did Hit & Try method
. With following code, the fullcalendar
resizes itself to fit within the size of the screen
. There is no overflow. At least works on Google Chrome.
$('#calendar').fullCalendar({
aspectRatio: 3
});