task_row_class

specifies the CSS class that will be applied to the row of the timeline area

startDatethe date when a task is scheduled to begin
endDatethe date when a task is scheduled to be completed
taskTaskthe task object

Example

gantt.templates.task_row_class = function(start, end, task){
    return "";
};

Details

Returns the CSS class for the item in question.

See also
Back to top