Hi,
I want to graphically show a simple project schedule on a report (i.e simple Gantt). I think the Range Bar graph may be suitable but can't get it to work and can't find any examples or documentation, is there anything available?
I want to list each job on the Y axis with dates on the X axis. with a Bar between start and end dates for each job.
Here is an example of the object data-source I'm using:
Any help greatly appreciated.
I want to graphically show a simple project schedule on a report (i.e simple Gantt). I think the Range Bar graph may be suitable but can't get it to work and can't find any examples or documentation, is there anything available?
I want to list each job on the Y axis with dates on the X axis. with a Bar between start and end dates for each job.
Here is an example of the object data-source I'm using:
public class ProjectSchedule{ public ProjectSchedule() { } public string JobName { get; set; } public DateTime Start { get; set; } public DateTime End { get; set; } public static List<ProjectSchedule> GetSchedule() { return new List<ProjectSchedule>(){ new ProjectSchedule(){ JobName="JOB1", Start=DateTime.Now.AddDays(5), End=DateTime.Now.AddDays(10)}, new ProjectSchedule(){ JobName="JOB2", Start=DateTime.Now.AddDays(5), End=DateTime.Now.AddDays(15)}, new ProjectSchedule(){ JobName="JOB3", Start=DateTime.Now.AddDays(3), End=DateTime.Now.AddDays(7)}, new ProjectSchedule(){ JobName="JOB3", Start=DateTime.Now.AddDays(10), End=DateTime.Now.AddDays(18)} }; }}Any help greatly appreciated.