Gantt Chart

From Open Risk Manual

Definition

A Gantt Chart is graphical representation relevant in Project Management of the tasks comprising a project along with the duration of each. Tasks are arranged in sequential order sorted by start date and/or precedence.

A chart will typically list the tasks to be performed on the vertical axis, and time intervals on the horizontal axis. The width of the horizontal bars shows the duration of each activity comprising the project. Gantt charts also show possible dependency relationships between activities.

PlantUML Elements

A PlantUML Gantt Chart specifies and shows the following:

  • Tasks
  • Temporal information (Start, Duration, End)


Example

@startgantt
skinparam handwritten true
[Prototype design] lasts 14 days and is colored in Lavender/LightBlue
[Test prototype] lasts 9 days and is colored in Coral/Green and starts 3 days after [Prototype design]'s end
[Write tests] lasts 5 days and ends at [Prototype design]'s end
[Hire tests writers] lasts 6 days and ends at [Write tests]'s start
[Init and write tests report] is colored in Coral/Green
[Init and write tests report] starts 1 day before [Test prototype]'s start and ends at [Test prototype]'s end
@endgantt

Gantt Chart

References