Data Binding
The Gantt provides a set of options for binding it to data.
The supported data-binding approaches are:
Model Requirements
The model that binds to the Gantt extends the IGanttTask
and the IGanttDependency
interfaces, whith the following properties:
IGanttTask
public interface IGanttTask
{
string Title { get; set; }
DateTime Start { get; set; }
DateTime End { get; set; }
decimal PercentComplete { get; set; }
int OrderId { get; set; }
bool Summary { get; set; }
bool Expanded { get; set; }
}