How to Create a Gantt Chart Without Specific Dates
- Use relative durations (7d, 14d) instead of specific dates — the chart still shows sequencing and phase length
- Ideal for proposals where the actual start date is not yet confirmed
- Use a placeholder start date (e.g. 2026-01-01) and the chart logic stays correct
- Export PNG or SVG — the dates shown are based on your placeholder start
Table of Contents
You do not always know exactly when a project starts when you need to submit a timeline. Grant proposals, project bids, and dissertation plans often require a gantt chart before a start date is confirmed. The solution: define your tasks with relative durations and dependencies, use a placeholder start date, and the sequencing logic stays completely accurate.
Why You Might Need a Gantt Chart Without Fixed Dates
Common situations where you need a gantt chart before you know the start date:
- Grant proposals — you submit the proposal months before funding is confirmed. The timeline shows your research plan, not committed calendar dates.
- Project bids — you show a client "this project takes 12 weeks" without knowing when they will sign the contract.
- Dissertation proposals — universities want a timeline during the proposal stage, before your start date is approved.
- Agile roadmaps — relative sprint sequences are more meaningful than specific dates when release timing is uncertain.
The gantt chart tool supports this with a simple approach: use a placeholder start date (like January 1, 2026) and define all tasks using relative durations and "after" dependencies. The logic is correct; only the displayed dates are placeholders.
Using Relative Durations Instead of Specific Dates
The key is to anchor the first task to any date, then chain all subsequent tasks using "after [taskId]". This way, the entire timeline shifts correctly if you change the start date later.
gantt
dateFormat YYYY-MM-DD
title Project Timeline (Start Date TBD)
section Phase 1 — Research
Background research :t1, 2026-01-01, 14d
Literature review :t2, after t1, 21d
section Phase 2 — Development
Prototype design :t3, after t2, 10d
Build prototype :t4, after t3, 21d
Testing :t5, after t4, 14d
section Phase 3 — Delivery
Documentation :t6, after t5, 7d
Final review :t7, after t6, 5d
Submission :milestone, after t7, 1d
To shift the entire timeline — change only the date on the first task (t1). Every other task re-anchors automatically. If the project starts March 1 instead of January 1, change one date and the chart recalculates.
Sell Custom Apparel — We Handle Printing & Free ShippingHow to Present a Dateless Gantt Chart in a Proposal
When submitting a proposal with a placeholder start date, note it explicitly in your document. A caption like "Figure 1: Proposed project timeline — dates from confirmed start of project" makes the intent clear without undermining the timeline's credibility.
Alternatively, use week numbers instead of calendar dates. Change your date format to a label like "Week 1" by anchoring to a convenient date and describing the timeline in terms of weeks elapsed rather than months. This removes the date-specific appearance entirely.
For proposals where a month-level timeline is sufficient, replace individual task durations with phase blocks: "Months 1-2: Research", "Months 3-5: Development", "Month 6: Review and Delivery". Each phase becomes one task with a duration in months.
Converting to Real Dates When the Project Is Approved
Once your start date is confirmed, update the single anchor date in your gantt chart. Because all tasks use "after [taskId]" chaining, every subsequent task updates automatically. A timeline that was anchored to a placeholder January 1 date can be updated to an actual March 15 start by changing one line of text.
Export a new PNG or SVG with the real dates for your project kickoff documentation, contract deliverables, or project charter. The structure you built for the proposal becomes the working project schedule with minimal effort.
See the full tutorial at How to Create a Gantt Chart Online Free for complete syntax reference.
Create Your Proposal Gantt Chart — Placeholder Dates Work Fine
Use a placeholder start date and relative durations. Update to real dates when your project is confirmed.
Open Free Gantt Chart MakerFrequently Asked Questions
Can I create a gantt chart without any dates at all?
The tool requires a dateFormat line and at least one anchor date to position tasks on the axis. Use a placeholder start date like 2026-01-01. The displayed dates will be based on that placeholder, but the task durations and sequencing logic are fully accurate.
How do I change the start date without redoing the whole gantt chart?
Change only the date on the first task. All subsequent tasks that use "after [taskId]" will automatically recalculate their positions based on the new anchor date. Only tasks with hardcoded start dates need to be updated individually.
What is the best format for a gantt chart in a grant proposal?
A clean gantt chart with 8-15 tasks, organized into 3-5 phases, exported as PNG or SVG. Date precision (days vs weeks vs months) should match the length of the project — a 2-year grant does not need day-level granularity.

