Skip to main content
All docs
V26.1
  • ASPxGantt.ResourcesDataSource Property

    Specifies the data source from which the gantt retrieves resources.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v26.1.dll

    Declaration

    [DefaultValue(null)]
    public virtual object ResourcesDataSource { get; set; }

    Property Value

    Type Default Description
    Object null

    The data source object.

    Remarks

    The following example illustrates how to connect the Gantt control to the specified data tables or lists in the data sources programmatically.

    protected void Page_Init() {
    
        ASPxGantt gantt = new ASPxGantt();
        gantt.ID = "ASPxGantt1";
        form1.Controls.Add(gantt);
    
        gantt.TasksDataSource = "TasksDataSet";
        gantt.DependenciesDataSource = "DependenciesDataSet";
        gantt.ResourcesDataSource = "ResourcesDataSet";
        gantt.ResourceAssignmentsDataSource = "ResourceAssignmentsDataSet";
    
        gantt.TasksDataMember = "Tasks";
        gantt.DependenciesDataMember = "Dependencies";
        gantt.ResourcesDataMember = "Resources";
        gantt.ResourceAssignmentsDataMember = "ResourceAssignments";
    
        //...
        gantt.DataBind();
    }
    
    See Also