Working hours on timeline view

Hi,

I’m displaying 7 days in timeline view with the code below :

scheduler.createTimelineView({
        section_autoheight: true,
        name: "timeline",
        x_date: "%D %d %F",
        x_unit: "day",
        x_step: 1,  
        x_size: 7,
        y_unit: sections,
        y_property: "employe_id",
        render: "bar"
});

By default, hours goes 00:00 to 00:00.
Is it possible to make the hours goes 05:00 to 20:00 ?

Thanks for your help

Nervermind, that was very simple.

It works with :

scheduler.createTimelineView({
     section_autoheight: true,
     name: "timeline",
     x_date: "%D %d %F",
     x_unit: "day",
     x_step: 1,  
     x_size: 7,
     y_unit:	sections,
     y_property: "employe_id",
     render: "bar",
     first_hour: 5,
     last_hour: 20
});