Stepping 1 day when displaying 7.

Is it possible to only step one day in the timeline view even if we are displaying the entire week, seven days?
i.e. I want to be able to only move one day to the right, or left. E.g. setting the first day to tuesday if the first day currently is set to monday… I need this so that users can move an event from one period to another without having to edit the event.

Hi,
try using specifying x_length in timeline config: scheduler.createTimelineView({ name: "timeline", x_unit: "day", x_date: "%d %M", x_step: 1, x_size: 7,//display 7 days x_length: 1,//scroll 1 day

Thanks, that worked just fine!