change section width

Hello,

I need to change width of the section bar at timeline view, how can I do this?

thanks,
Feyza

You can use dx option of createTimelineView command

scheduler.createTimelineView({ name: "timeline", dx: 300,

1 Like

Hi Stanislav,
Thanks a lot for your tip it helped :slight_smile:

I want to change also the hour scale at units view to 30 minutes how can I do this?

thanks,
Feyza

You can’t change the real step of vertical time-scale, but you can define your own template for scale label and instead of single per-hour date, output two dates with 30-minutes step. So while it will be still a single html container per hour - it will have two date labels

scheduler.templates.hour_scale = function(date){ return "<div>a</div><div>b</div>"; }