hides a time unit in the time scale
// 0 refers to Sunday, 6 - to Saturday
gantt.ignore_time = function(date){
if(date.getDay() == 0 || date.getDay() == 6)
return true;
};
The ignore_time method is a function that takes the cell's date as a parameter. To hide a unit - return true for it.