nekken / ng2-fullcalendar

95 stars 47 forks source link

how to enable week ,day and month buttons that are in the header on the fullcalender ? #52

Open Mian007 opened 7 years ago

umeshjamdade commented 6 years ago

You can add it by using header attribute.

this.calendarOptions = { fixedWeekCount: false, header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay,list' }, };

pankajparkar commented 3 years ago

@umeshjamdade suggested option not working for me. but below worked for me. I'm using @fullcalendar/angular

headerToolbar: {
    start: 'prev,next today',
    center: 'title',
    end: 'dayGridMonth,dayGridWeek,dayGridDay,dayGridlist'
  },