I\'m trying to change the height of an event (appointment) in FullCalendar.
I followed the suggestion in this answer How to edit width of event in FullCalendar?
You could try something like this:
eventRender: function(event, element, view) {
var cellheight = $('.fc-widget-content').height();
$(element).css('height', cellheight);
},
Doesn't seem to work as well with eventAfterRender but if you play around with it a bit you should get something to meet your needs