Interactive Timeline Management
Drag and drop tasks, resize durations, and manage dependencies visually. ApexGantt makes project timeline management intuitive and efficient.
Multiple View Modes
Switch between hour, day, week, month, and year view scales to get the perfect level of detail for your project timeline.
Simple Integration
Get started with ApexGantt in just a few lines of code
import ApexGantt from "apexgantt"
const tasks = [
{ id: 1, name: "Design Phase", start: "2024-01-01", end: "2024-01-15" },
{ id: 2, name: "Development", start: "2024-01-16", end: "2024-02-28",
dependencies: [1] },
{ id: 3, name: "Testing", start: "2024-03-01", end: "2024-03-15",
dependencies: [2] }
]
const gantt = new ApexGantt("#gantt", { tasks })
gantt.render()