In Timeline View - Always Start the 7 Day Period on a Monday

Hi,

I have this setup for ‘timeline’ view;

scheduler.createTimelineView({ name: "timeline", x_unit: "day", x_date: "%D, %d %M", x_step: 1, x_size: 7, y_unit: sections, y_property: "section_id", render: "bar" });
I would like to have it so when you move forward and back, or even click on ‘Today’, that it always shows the week starting on a Monday.

Thoughts?

Hello,

Add following:

scheduler.date.timeline_start = scheduler.date.week_start;

Kind regards,
Ilya

Champion. Thanks!