Agenda View row height

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?

Hello,

This is a timeline view.
folder_dy:20 – all folder items (in your case Section A, Section B) would have height 20
dy:35 – all items (not folders) would have height 35.

Kind regards,
Ilya

You’re right, I meant to say Timline View Row Height

The dy controls the section title, which is good. I need “Item 1” and “Item 2” to also be 20, while “Item 3” and “Item 4” are 35.

Is there a function to make Item 1" and “Item 2” 20 and have “Item 3” and “Item 4” at 35?