Hello there,
schedulerInstance.createTimelineView({
name: 'timeline',
x_unit: 'week',
x_date: '%F %d',
x_step: 2,
x_size: 26,
x_length: 26
second_scale: {
x_unit: 'week', // measuring unit of the second X-Axis
x_step:6,
},
scrollable: true,
column_width: 80,
scroll_position: moment(gStartDate),
y_unit: [{ key: selectedSimCalcId, label: 'Section A', height: document.body.scrollHeight - 140 }],
y_property: 'selectedSimCalcId', // mapped data property
render: 'bar', // view mode
dy: document.body.scrollHeight - 140,
dx: 0,
event_dy: 150,
round_position: true,
resize_events: false
});
I am trying to implement a Sprint View. So my first x unit will be in 2 weeks and i will define each 3 sprint as an Iteration. So whatever i do, second scale always showing as 2 weeks and ignoring my second_scale_x_step. Can you support me on this subject?
Thank you