start_on_monday

sets the starting day of the week

boolean start_on_monday;

Example

// weeks start from Sunday
gantt.config.start_on_monday = false;
gantt.init("gantt_here");


Default value:

true
Details

If the parameter is set to true, a week will start from Monday (otherwise, from Sunday).

Back to top