베이스라인 컨트롤
정보
이 기능은 PRO 에디션에만 포함되어 있습니다.
이 컨트롤은 작업의 시작 날짜와 기간(일 단위)을 정의하여 베이스라인을 설정할 수 있는 셀렉터 모음입니다.
gantt.config.lightbox.sections = [
{ name: "description", height: 38, map_to: "text", type: "textarea", focus: true },
{ name: "time", type: "duration", map_to: "auto" },
{ name: "baselines", height: 100, type: "baselines", map_to: "baselines" }, /*!*/
];
초기화
baselines 컨트롤을 라이트박스에 포함시키려면 다음 단계를 따라주세요:
- 라이트박스 설정에 섹션을 추가합니다:
gantt.config.lightbox.sections = [
{ name:"description", height:38, map_to:"text", type:"textarea", focus:true},
{ name:"baselines", type:"baselines" }, /*!*/
{ name:"time", type:"duration", map_to:"auto" }
];
- 이 섹션에 대한 라벨을 정의합니다:
gantt.locale.labels.section_baselines = "Baselines";