showing results for - "how to adjust the caledar height fullcalendar"
Calie
12 Jan 2020
1//Refer-doc:https://fullcalendar.io/docs/contentHeight
2var calendar = new FullCalendar.Calendar(calendarEl, {
3  contentHeight: 600
4});
5//or
6
7var calendar = new FullCalendar.Calendar(calendarEl, {
8  contentHeight: "auto"
9});
10
11//You can dynamically set a calendar’s contentHeight after initialization:
12
13calendar.setOption('contentHeight', 650);