Timeline view no more space to add new Event on Resource

Hi there,
Is it possible to have some extra white space on cell in timeline view to add a new Event when the cell is fully occupied to events? In the image I’ve uploaded I’ve no more white space to add another Event on James Resource… How can I achieve this result?
Thanks

Hello,

you can add space below the last event using the fit_events_offset setting of createTimelineView method:

scheduler.createTimelineView({
    name: "timeline",
    x_unit: "hour",
    x_date: "%H",
    x_step: 1,
    x_size: 24,
    fit_events_offset: 15,

here is a working demo:
https://snippet.dhtmlx.com/a3rf4a4s

Thanks @Aliaksandr
Exactly what I wanted.