Icon

DlhSoft Gantt Chart Library

for Windows® Forms and .NET 2.0 SP2

GanttChartView Control

GanttChartView control is used to display and update a list of task items using a grid view and an attached Gantt Chart, and it is part of Gantt Chart Library for Windows® Forms 2.0.


Screenshots and Intro Source Code

  • Basic usage:

    GanttChartView basic usage

    ganttChartViewTasksTreeGrid.Columns.Add(nameDataGridViewColumn);
    [...]
    ganttChartView.IndentLevelMember = "IndentLevel";
    ganttChartView.StartMember = "Start";
    ganttChartView.WorkMember = "Work";
    ganttChartView.ResourcesMember = "Resources";
    ganttChartView.PredecessorsMember = "Predecessors";
    [...]
    tasks = new BindingList<MyTask>();
    MyTask t1 = new MyTask();
    t1.Name = "Parent Task";
    [...]
    tasks.Add(t1);
    [...]
    ganttChartView.DataSource = tasks;
    [...]
    public class MyTask : INotifyPropertyChanged
    {
        [...]
    }

  • Custom columns:

    GanttChartView custom columns
  • Custom appearance:

    GanttChartView custom appearance
  • Custom scale:

    GanttChartView custom scale
  • Interruptions:

    GanttChartView interruptions
  • Icons:

    GanttChartView icons
  • Markers:

    GanttChartView markers
  • Planned values:

    GanttChartView planned values
  • Critical tasks:

    GanttChartView critical tasks
  • Bar templating:

    GanttChartView bar templating

Related Components

Terms of Use Privacy Statement