rightside_text

specifies the text assigned to tasks bars on the right side

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.rightside_text = function(start, end, task){
    return "ID: #" + task.id;
};

Related samples

See also
Back to top