Search code examples
jqueryhtmlcssfullcalendar

FullCalendar - remove time axis in agenda view?


I want to use multiple calendars and lose the time axis in the agenda view. So far i can get rid of the numbers/content in the column with the axisFormat option but i cant seem to set the width to 0 or anything like that.


Solution

  • According to this issue, there is no supported configuration option for this, but you can hide it through CSS.

    .fc-agenda-axis {
      display: none;
    }
    

    That will hide the time axis.