How do I set fixed height of row in fullcalendar? I want to have vertical scrollbar, if there are too many events.
$('#calendar').fullCalendar('option', 'contentHeight', 50);
for me only this worked
.fc-agendaWeek-view tr {
height: 40px;
}
.fc-agendaDay-view tr {
height: 40px;
}
If you want to change the height of each time slot rows, you can override the css class.
.fc-agenda-slots td div {
height: 40px !important;
}
If you mean something else, please let us know.
The contentHeight is used to calculate only the calendar's height.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With