Search code examples
fullcalendarfullcalendar-scheduler

How to hide hours line in Full Calendar


I have this agenda view and I want to hide the hours line. What's the solution ? Thanks.

enter image description here


Solution

  • You can use basicWeek instead of agendaWeek view available views

    check this: http://jsfiddle.net/e78b944d/1/

    $('#calendar').fullCalendar({
      defaultView: 'basicWeek' /* 'agendaWeek' */
    });