Untitled

 avatar
unknown
plain_text
a year ago
1.3 kB
2
Indexable
Let's create a simple Gantt chart that outlines a small project with tasks in different sections. Here's an example:

- **Project Title:** Website Development
- **Sections:**
  - Planning
    - Task 1: Requirements Gathering (10 days)
    - Task 2: Feasibility Study (5 days)
  - Development
    - Task 3: Design (15 days)
    - Task 4: Implementation (30 days)
  - Testing
    - Task 5: Unit Testing (10 days)
    - Task 6: Integration Testing (15 days)
  - Deployment
    - Task 7: Deployment (5 days)
  - Milestones
    - Milestone 1: Project Kickoff
    - Milestone 2: Final Review

Here is the corresponding Mermaid code:

```mermaid
gantt
    title Website Development
    dateFormat  YYYY-MM-DD
    excludes    weekends
    
    section Planning
    Requirements Gathering   :a1, 2024-07-01, 10d
    Feasibility Study        :after a1, 5d
    
    section Development
    Design                   :a2, 2024-07-16, 15d
    Implementation           :after a2, 30d
    
    section Testing
    Unit Testing             :a3, 2024-08-15, 10d
    Integration Testing      :after a3, 15d
    
    section Deployment
    Deployment               :a4, 2024-09-09, 5d
    
    section Milestones
    Project Kickoff          :milestone, m1, 2024-07-01, 0d
    Final Review             :milestone, m2, after a4, 0d
```

Let's render this Gantt chart.
Editor is loading...
Leave a Comment