I'm using Vue version of fullcalendar.io (v5) Resource Timeline View with a custom view object passed via settings and I can't figure out how to set it up so that the calendar start 1 week before the current date. I've tried initialDate, activeStart, visibleRange options with no luck. It just starts at the beginning of the current month no matter what. Relevant settings code:
views: {
resourceTimelineThreeMonths: {
type: 'resourceTimeline',
duration: { months: 3 },
activeStart: '2021-03-06',
initialDate: '2021-03-06',
// dayCount: 40,
visibleRange: {
start: '2021-3-6',
end: '2021-5-13'
},
}
},
expandRows: true,
plugins: [
resourceCommonPlugin,
resourceTimelinePlugin,
interactionPlugin,
],
schedulerLicenseKey: "GPL-My-Project-Is-Open-Source",
initialView: "resourceTimelineThreeMonths"