The agenda view is set up as:
elements = [
{
key:5, label:"Section A", open:true, children: [
{key:10, label:" Item 1"},
{key:20, label:"Item 2"}
]
},
{
key:40, label:"Section B", open:true, children: [
{key:50, label:"Item 3"},
{key:60, label:"Item 4"}
]
},
];
scheduler.createTimelineView({
section_autoheight: false,
name: "timeline",
x_unit: "minute",
x_date: "%h:%i %a",
x_step: 30,
x_size: 19,
x_start: 18,
x_length:48,
y_unit: elements,
y_property:"section_id",
render: "tree",
folder_dy:20,
dy:35
});
I would like have the “Section A” height to be smaller and then have “Section B” height work at it does with folder_dy:20, dy:35.
Is there a way to do this?