I have multiple event markers for consecutive dates. When we are in zoom out view, the event markers overlap, so unable to read them. We need a way to display event markers in stacked manner
|
public updateEventMarker() {
document.getElementsByClassName('e-span-label')[1].style.top = '100px';
document.getElementsByClassName('e-gantt-right-arrow')[1].style.top =
'110px';
}
public actionComplete(args: any) {
this.updateEventMarker();
}
public dataBound(args: any) {
this.updateEventMarker();
} |
Hi Team,
I added the snippet you provided in both places, but it did not work.
Hi Team,
In the video also, I can see that the events are overlapping on same level when zoomed in. Also, the solution provided is not working. Is it possible to have a screenshare and resolve the issues as we have client deployment tomorrow. I do appreciate the efforts being put in by you team, but it is not serving the purpose.
Thanks
Rohit Maini
|
public updateEventMarker() {
Design phase – 2marker
document.getElementsByClassName('e-span-label')[1].style.top = '100px';
document.getElementsByClassName('e-gantt-right-arrow')[1].style.top =
'110px';
Production Phase – 3marker
document.getElementsByClassName('e-span-label')[2].style.top = '140px';
document.getElementsByClassName('e-gantt-right-arrow')[2].style.top =
'140px';
Sales and marketing – 4th marker
document.getElementsByClassName('e-span-label')[3].style.top = '170px';
document.getElementsByClassName('e-gantt-right-arrow')[3].style.top =
'180px';
} |