TOOLS & ARTIFACTS · LESSON 04.03intermediate

Gantt Chart — deep dive.

Dependencies, buffers, baseline tracking.

↳ tl;dr

Gantt charts visualize the schedule as bars on a time axis with dependency arrows. Beyond the basics: baseline tracking (current vs. original plan), finish-to-start vs other dependency types, and buffer placement (where to absorb slack vs. let it propagate).

Dependency types

  • Finish-to-Start (FS) — most common. B starts after A finishes. (e.g. test after build.)
  • Start-to-Start (SS) — B starts when A starts (in parallel). (e.g. design + research kick off together.)
  • Finish-to-Finish (FF) — B finishes when A finishes. (e.g. testing finishes when development finishes.)
  • Start-to-Finish (SF) — rare. B finishes when A starts. (e.g. old shift ends when new shift starts.)

Baseline tracking

When you approve the schedule, save it as the baseline. As the project progresses, render two bars: the baseline (often gray) and the current (often colored by status). The variance between them is what sponsors actually want to see — not the current bar alone.

Buffer placement

Two schools: per-task buffers (each estimate includes its own pad) or aggregated buffers at the project end (Critical Chain method, Goldratt). The aggregated approach is statistically tighter — task-level buffers tend to get consumed regardless of need (Parkinson's law: work expands to fill the time).

in the wild

Most teams pad estimates and pretend they don't. Be explicit: tell the team "estimates should be 50/50, the buffer lives at the milestone level." Honest individual estimates + a visible aggregate buffer is a more truthful schedule than padded individuals + a hidden Gantt line.

// practice this

Practice in the Gantt lab

The Gantt tool lab walks you through dependency types, status assessment, and reading the critical path under pressure.

// sources

Sources cited

  1. [01]
  2. [02]
    A Guide to the Project Management Body of Knowledge (PMBOK Guide), 7th Edition

    Project Management Institute (PMI) · 2021 · retrieved 2026-04

    PMI's flagship reference. 7e shifted from process groups to performance domains.

// sources

Further reading

  1. [01]