Hi,
I have a task with long name and after exporting it to pdf, name is shown partially.
I tried to change width of the column before exporting and reset it after it:
let columns = $("#gantt").getKendoGantt().options.columns;
columns[3].width = 1500;
$("#gantt").getKendoGantt().setOptions({columns: columns});
outerThis.gantt.saveAsPDF();
but it broke my gantt chart, because I have other methods in databound and databinding which resets after setOptions.
I also tried to change height of my rows, but it broke dependencies like shown in Screenshot(120).
How can I solve this problem? Is there any way to change only the width of the column without changing other things?
Thanks