Hello,
I am using TypeScript in my project, was trying to export the gantt view. Couldn't find any documentation for the gantt view.
I was able to export the viewport and full view using:
(this.dp as any).exportAs("png").download();
But it didn't work for Range,
(this.dp as any).exportAs("png", {
area: "range",
dateFrom: startdate,
dateTo: enddate,
})
what should be the resource From/To in case of gantt chart