본문으로 건너뛰기

rightside_text

Description

오른쪽 사이드의 태스크 바에 할당될 텍스트를 지정합니다

rightside_text: (start: Date, end: Date, task: Task) => string | number | void;

Parameters

  • start - (required) Date - 작업이 시작될 예정인 날짜
  • end - (required) Date - 작업이 완료될 예정인 날짜
  • task - (required) Task - 태스크 객체

Returns

  • text - (string | number | void) - Gantt 차트에 렌더링될 HTML 텍스트

Example

gantt.templates.rightside_text = function(start, end, task){
return "ID: #" + task.id;
};
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.