how to adjust the caledar height fullcalendar

152

how to adjust the caledar height fullcalendar -

//Refer-doc:https://fullcalendar.io/docs/contentHeight
var calendar = new FullCalendar.Calendar(calendarEl, {
  contentHeight: 600
});
//or

var calendar = new FullCalendar.Calendar(calendarEl, {
  contentHeight: "auto"
});

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

calendar.setOption('contentHeight', 650);

Comments

Submit
0 Comments