# time_step

### Description

@short: 작업의 시간 값에 대한 최소 단위(분)를 설정합니다.

@signature: time_step: number

### Example

~~~jsx
gantt.config.time_step = 15;
...
gantt.init("gantt_here");
~~~

**Default value:** 60

### Details

- 작업의 시작 및 종료 시간은 time_step의 배수에 맞춰 정렬됩니다. 예를 들어, *time_step = 20*인 경우 작업은 0, 20, 40분 등으로만 시작할 수 있습니다.
- 라이트박스의 시간 선택기도 동일한 time_step을 따릅니다.

:::note
참고: time_step 속성으로 설정된 간격으로 태스크를 드래그하려면 [round_dnd_dates](api/config/round_dnd_dates.md) 구성을 *false*로 설정해야 합니다.
~~~
gantt.config.round_dnd_dates = false;
~~~
 
:::

:::note
**Related example:** [Gantt. 최소 단위로 작업 Drag'n'drop](https://snippet.dhtmlx.com/bd7ir3w7)
:::

### Related API
- [round_dnd_dates](api/config/round_dnd_dates.md)