rightside_text

작업 바 오른쪽에 표시되는 텍스트를 정의합니다.

startDate작업이 시작되도록 설정된 날짜
endDate작업이 완료될 예정인 날짜
taskTask작업 객체 자체

Example

gantt.templates.rightside_text = function(start, end, task){
    return "ID: #" + task.id;
};

Related samples

See also
Back to top