Plan projects with a visual Gantt chart. Add tasks, track progress, group by phase, and export as PNG or PDF.
No tasks yet — click Add Task to get started
Gantt Chart Maker is a free, browser-based project scheduling tool. It lets you visualise tasks on a horizontal timeline, grouped by project phase, with colour coding, progress tracking, and a live "today" marker.
Switch between Day, Week, and Month zoom levels to see the fine-grained schedule or the high-level roadmap. Tasks are draggable in the list to reorder them. The chart auto-saves every change to your browser — no account needed. Export options include PNG (for slide decks or emails) and PDF (for documents and printing).
Common use cases: software sprints, product launches, event planning, construction schedules, academic project timelines, and marketing campaigns.
A Gantt chart (named after Henry Gantt, 1910s) represents tasks as horizontal bars on a time axis. The left edge of each bar = start date; the right edge = end date; bar width = duration. This tool computes positioning using pure CSS percentages derived from the task's date offset within the chart's visible date range.
The chart range is auto-computed: chartStart = earliest task start − 3 days; chartEnd = latest task end + 3 days. Task bar left position = (taskStart − chartStart) / totalDays × 100%. Bar width = duration / totalDays × 100%.
Grid columns for each zoom level are generated by iterating from chartStart to chartEnd in day, 7-day, or calendar-month increments. The min-width of the chart inner div is set to totalDays × 28px (day zoom), weeks × 90px (week), or months × 100px (month) to ensure bars remain readable at any scale.
State persists to localStorage via Alpine.js watchers. Export uses html2canvas at 2× DPR scale fed into jsPDF, both loaded on-demand via dynamic import().
Let us know what's wrong with Gantt Chart Maker.
Thank you — report received!