columnIndexByDate

주어진 날짜에 해당하는 컬럼의 인덱스를 제공합니다.

number columnIndexByDate(Date date);
dateDate날짜 객체
number컬럼의 인덱스

Example

gantt.columnIndexByDate(new Date(2017, 03, 11)); // ->10

Back to top