Today I have found a weird issue where gantt.ext.formatters.durationFormatter is giving issue while exporting data to excel sheet.
The duration column is empty.
here is the screenshot:
gantt.exportToExcel({
name:“Project Scheduling.xlsx”,
columns:[
{ id:“text”, header:“Task Name”, width:50 },
{ id:“duration”, header:“Duration”, width:10 }
]
});
when i set the above to
gantt.exportToExcel({
name:“Project Scheduling.xlsx”
});
this gives me blank page.