<ig:ListBackedProject x:Name="dataProvider"
TaskItemsSource="{Binding Tasks}"
Finish="8/9/2012"
IsScheduledFromStart=">
This topic explains how the xamGantt™ control calculates the project’s and tasks’ dates based upon the project’s start or finish date.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
By default, project scheduling using the xamGantt control begins with its start date. In this case, the scheduling engine calculates the tasks dates as well as the project finish date according to the project start date.
In case with a specified project finish date, configures the engine to calculate the tasks dates and the project start date according to the project’s finish date.
To achieve this, set the Project
IsScheduledFromStart
property to false
and the Project
Finish
property to the finish date of type DateTime.
The following table maps the desired configuration to property settings.
The example below demonstrates how to schedule a project from its finish date:
In XAML:
<ig:ListBackedProject x:Name="dataProvider"
TaskItemsSource="{Binding Tasks}"
Finish="8/9/2012"
IsScheduledFromStart=">
The following topics provide additional information related to this topic.