Data Binding

The Gantt provides a set of options for binding it to data.

ninja-iconNew to Telerik UI for ASP.NET MVC?Telerik UI for ASP.NET MVC is a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.Start Free Trial

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; }
    }

See Also

In this article
Model RequirementsSee Also
Not finding the help you need?
Contact Support