Icon

DlhSoft Gantt Chart Library

for Windows® Forms and .NET 2.0 SP2

ResourceLoadChartView Control

ResourceLoadChartView control is used to display and update display resource assignment allocation units using a Load Chart, and it is part of Gantt Chart Library for Windows® Forms 2.0.


Screenshots and Intro Source Code

  • Basic usage:

    ResourceLoadChartView basic usage

    resourceLoadChartView.IndentLevelMember = "IndentLevel";
    resourceLoadChartView.StartMember = "Start";
    resourceLoadChartView.WorkMember = "Work";
    resourceLoadChartView.ResourcesMember = "Resources";
    [...]
    tasks = new BindingList<MyTask>();
    [...]
    MyTask t1 = new MyTask();
    [...]
    t1.Resources = "John";
    [...]
    tasks.Add(t1);
    [...]
    resourceLoadChartView.DataSource = tasks;
    [...]
    public class MyTask : INotifyPropertyChanged
    {
        [...]
    }


Related Components

Terms of Use Privacy Statement