I'm trying to show hours for my events in FullCalendar, I have something like this :
$('#calendar').fullCalendar({
events: [
{
title: 'Event',
start: '2010-01-01 14:30:00',
allDay: false
}
],
timeFormat: 'H(:mm)'
});
It works : it displays hours inside the event(s) but I would like to see all hours at the left like here (select week or day).
Is there any way to get that ?
Thanks for reading.