Cell autosize in TimeLine View

Hello,

How can i turn on such a functionality in TimeLine View in Asp.net ?

It works fine in this example. When I drag many events on each other the cell resizes. In my project by default its height is fixed.
dhtmlx.com/docs/products/dhtmlxS … line.shtml

I’ve been looking for this in documentation but can’t find it.

Hello,
this should be enabled by default. Following config should give you a timeline with sections that are resized to fit all events

[code]var timeline = new TimelineView(“timeline”, “room_id”);
timeline.RenderMode = TimelineView.RenderModes.Bar;

timeline.AddOptions(rooms);
scheduler.Views.Add(timeline);[/code]
Probably you’ve disabled auto sizing with following line: timeline.FitEvents = false;

Thanks a lot!

That was it.

I had:
timeline.FitEvents = false;