Amol J
Amol J

Reputation: 1

JQuery fullcalendar row-height increment for weekly(Agenda) view

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

Answers (1)

Martijn Welker
Martijn Welker

Reputation: 5605

To increase the row height you can just put this in your styles:

.fc-time-grid .fc-slats td {
    height: 3.5em;
}

working fiddle

Upvotes: 0

Related Questions