Reputation: 31
Is is possible to create a view like attached using the fullcalendar scheduler? Basically group by day. Like showed in the images below
Upvotes: 0
Views: 593
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