Reputation: 1
Can anyone please tell me how to increase the row height for an Agenda view in jquery-fullcalendar plugin? (http://fullcalendar.io/docs/)
Additional info : I am able to able to bind the custom data to calendar but row-height is very limited and not showing entire text which I want to display for an event.
Please let me know if any other information is needed.
Thanks
Upvotes: 0
Views: 371
Reputation: 5605
To increase the row height you can just put this in your styles:
.fc-time-grid .fc-slats td {
height: 3.5em;
}
Upvotes: 0