I can easily add the bars to the right side, but adding the test and start, end date/time on the grid on the right is not working? Do I need to add this separately?
var projectInfo = (from pi in dbContext.tasks where pi.taskID == idPassed select pi).First();
GanttViewDataItem item1 = new GanttViewDataItem();
item1.Start = Convert.ToDateTime(projectInfo.dateAdded);
item1.End = Convert.ToDateTime(projectInfo.taskDT);
item1.Progress = 30;
item1.Title = projectInfo.taskName;
var projectInfo = (from pi in dbContext.tasks where pi.taskID == idPassed select pi).First();
GanttViewDataItem item1 = new GanttViewDataItem();
item1.Start = Convert.ToDateTime(projectInfo.dateAdded);
item1.End = Convert.ToDateTime(projectInfo.taskDT);
item1.Progress = 30;
item1.Title = projectInfo.taskName;