Week in timeline view

Hi,

i’ve made a timeline view that display 7 days with these paramters :

scheduler.createTimelineView({ name: "timeline", x_unit: "day", x_date: "%D %d %F", x_step: 1, x_size: 7, x_start: 0, y_unit: sections, y_property: "id_user", render: "bar", section_autoheight: false, event_dy: "full", round_position: true, sort: basicSort });

is it possible to configure this view to have a week view that always begin on a monday like the week view ?

Hello,

Add following after createTimelineView:

// Working week scheduler.date.timeline_start = scheduler.date.week_start;
Best regards,
Ilya

Thanks a lot