Hi,
Is it possible to remove the scaleY on a timeline view and bump the events to the left?
I have only one section. it’s really not necessary to display the labels which takes a lot space. Have anyone come across this?
Thanks,
Han
Hi,
Is it possible to remove the scaleY on a timeline view and bump the events to the left?
I have only one section. it’s really not necessary to display the labels which takes a lot space. Have anyone come across this?
Thanks,
Han
I got an answer about the same thing in this thread
You may set custom width of this column using “dx” in timeline configuration with the following
scheduler.createTimelineView({
dx: 100,
...
});
I just used a narrow column for my requirements, but if you want to get rid of it completely, you could try using a setting of 0.
That works for me. Thank!