Dear Jayakumar
I was able to break it down to the Duration Datatype.
This is my Data Model I am using
public class TaskData
{
public int TaskId { get; set; }
public string TaskName { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Progress { get; set; }
public string Duration { get; set; }
public int ParentId { get; set; }
public List<TaskData> Children { get; set; }
public List<string> Resources { get; set; }
public DateTime BaselineStart { get; set; }
public DateTime BaselineEnd { get; set; }
public string Predecessors { get; set; }
public string Work { get; set; }
}
By changeing the "Duration" datatype to integer, Excel Export is working as expected. But this will bring me to a different issue.
As I am able to change the duration value to half days (8.5 as an example), what seems to be supported, I am not able to use Excel Export anymore,
I have tryed different datatypes, but the only which seems to be supported is the integer datatype.
Is there a workaround for it that I am able to use string or double or decimal as well?
Best Regards
Martin