Gantt APIOthersignore_timeOn this pageignore_time Description Hides a time unit in the time scale ignore_time: GanttCallbackExample// 0 refers to Sunday, 6 - to Saturdaygantt.ignore_time = function(date){ if(date.getDay() == 0 || date.getDay() == 6) return true;};DetailsThe ignore_time method is a function that takes the cell's date as a parameter. To hide a unit - return true for it.Related Guides Hiding Time Units in the Scale