GanttView facilitates you to schedule your project from finish date or start date as per your convenience. To do so, you can use the ScheduleFrom property of the Project class. After scheduling your project, you can specify the start date and finish date of your task by using the Start and Finish properties of the Task class.
To set the start/finish date at design time, follow the given steps:
To set start and finish date programmatically, refer to the code given below:
C# |
Copy Code
|
---|---|
//Define start date of Task1 Task1.Start = new DateTime(2015, 06, 5); |