time_step
sets the minimum step (in minutes) for event's time values
number time_step;
Example
scheduler.config.time_step = 15;
...
scheduler.init('scheduler_here',new Date(2013,05,11),"week");
Default value:
5
Related samples
Details
- Start and end times of an event will have the values multiple of the time step, i.e. if time_step = 20, the event can start only at: 0, 20, 40 minutes etc.
- The lightbox time selector will have the same time step (it's true for the Timeline view as well).
Back to top