Craig
Craig

Reputation: 31

FullCalendar agenda week view by day

Is is possible to create a view like attached using the fullcalendar scheduler? Basically group by day. Like showed in the images below

Image

Upvotes: 0

Views: 593

Answers (1)

Craig
Craig

Reputation: 31

I figured this out by creating a custom view. The key is a type of timelineWeek and slotDuration of 24:00

views: {
          timeline7Days: {
          type: 'timelineWeek',
          slotDuration: '24:00',
          duration: { days: 7 },
           buttonText: 'resource week'
        }

Upvotes: 1

Related Questions