show_tasks_outside_timescale

enables showing tasks that are outside the specified date range in the Gantt chart

boolean show_tasks_outside_timescale;

Example

gantt.config.start_date = new Date(2019, 02, 31);
gantt.config.end_date = new Date(2019, 03, 09);
gantt.config.show_tasks_outside_timescale = true;
 
gantt.init("gantt_here");


Default value:

false

Related samples

See also
Change log

added in v6.3

Back to top