show_task_cells

enables/disables displaying column borders in the chart area

boolean show_task_cells;

Example

//hides column borders in the time scale
gantt.config.show_task_cells = false;
 
gantt.init("gantt_here");


Default value:

true
Details

When the property is set to 'false', it disables rendering of individial cells - renders just rows.
It can be used to increase the performance, especially if you are displaying a big amount of tasks in the chart.

Back to top