Top Related Projects
GPL version of Javascript Gantt Chart
🍞📅A JavaScript calendar that has everything you need.
jQuery Gantt editor
Gantt Gantt Gantt Timeline Schedule Calendar [ javascript gantt, js gantt, projects gantt, timeline, scheduler, gantt timeline, reservation timeline, react gantt, angular gantt, vue gantt, svelte gantt, booking manager ]
Quick Overview
Frappe Gantt is a simple, interactive, modern Gantt chart library for the web. It allows developers to create and manage project timelines and tasks visually, with features like drag-and-drop task management and dynamic updates.
Pros
- Easy to integrate and customize
- Responsive design, works well on various screen sizes
- Supports task dependencies and progress tracking
- Lightweight and performant
Cons
- Limited advanced features compared to some commercial alternatives
- Documentation could be more comprehensive
- May require additional styling for complex UI requirements
- Limited built-in export options
Code Examples
Creating a basic Gantt chart:
const tasks = [
{
id: 'Task 1',
name: 'Redesign website',
start: '2023-01-01',
end: '2023-01-10',
progress: 20
},
// Add more tasks here
];
const gantt = new Gantt("#gantt", tasks);
Adding task click event:
gantt.on('task_click', (task) => {
console.log(`Clicked task: ${task.name}`);
});
Updating task progress:
gantt.change_progress('Task 1', 50);
Getting Started
- Include the Frappe Gantt CSS and JS files in your HTML:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/frappe-gantt/dist/frappe-gantt.css">
<script src="https://cdn.jsdelivr.net/npm/frappe-gantt/dist/frappe-gantt.min.js"></script>
- Create a container element in your HTML:
<div id="gantt"></div>
- Initialize the Gantt chart in your JavaScript:
const tasks = [
{
id: 'Task 1',
name: 'Project Kickoff',
start: '2023-05-01',
end: '2023-05-05',
progress: 0
},
{
id: 'Task 2',
name: 'Design Phase',
start: '2023-05-06',
end: '2023-05-15',
progress: 0,
dependencies: 'Task 1'
}
];
const gantt = new Gantt("#gantt", tasks, {
view_modes: ['Quarter Day', 'Half Day', 'Day', 'Week', 'Month'],
bar_height: 40,
bar_corner_radius: 3,
arrow_curve: 5,
padding: 18
});
This will create a basic Gantt chart with two tasks, including a dependency between them. You can customize the appearance and behavior further using the available options and methods provided by the library.
Competitor Comparisons
GPL version of Javascript Gantt Chart
Pros of DHTMLX Gantt
- More feature-rich with advanced functionality like resource management and critical path calculation
- Extensive documentation and examples for easier implementation
- Regular updates and active community support
Cons of DHTMLX Gantt
- Commercial license required for most use cases
- Steeper learning curve due to more complex API
- Larger file size and potential performance impact for simpler projects
Code Comparison
DHTMLX Gantt:
gantt.init("gantt_here");
gantt.parse({
data: [
{id: 1, text: "Task 1", start_date: "2023-05-01", duration: 5},
{id: 2, text: "Task 2", start_date: "2023-05-06", duration: 3}
]
});
Frappe Gantt:
var tasks = [
{id: 'Task 1', name: 'Task 1', start: '2023-05-01', end: '2023-05-05'},
{id: 'Task 2', name: 'Task 2', start: '2023-05-06', end: '2023-05-08'}
];
var gantt = new Gantt("#gantt", tasks);
Both libraries offer similar basic functionality for creating Gantt charts, but DHTMLX Gantt provides more built-in features and customization options. Frappe Gantt has a simpler API and is more lightweight, making it suitable for smaller projects or those requiring minimal Gantt chart functionality.
🍞📅A JavaScript calendar that has everything you need.
Pros of tui.calendar
- More comprehensive calendar features, including day, week, month views
- Supports various calendar types (e.g., Google Calendar, iCal)
- Extensive customization options and theming capabilities
Cons of tui.calendar
- Steeper learning curve due to more complex API
- Larger file size and potentially heavier performance impact
- May be overkill for simple timeline or Gantt chart needs
Code Comparison
tui.calendar:
const calendar = new Calendar('#calendar', {
defaultView: 'week',
taskView: true,
scheduleView: ['time'],
template: {
milestone: function(schedule) {
return '<span style="color:red;">' + schedule.title + '</span>';
}
}
});
gantt:
const tasks = [
{
id: 'Task 1',
name: 'Redesign website',
start: '2019-01-01',
end: '2019-01-05',
progress: 20
}
];
const gantt = new Gantt("#gantt", tasks);
tui.calendar offers more advanced calendar functionality and customization, while gantt focuses specifically on Gantt charts with a simpler API. tui.calendar is better suited for complex scheduling needs, whereas gantt is ideal for straightforward project timeline visualization.
jQuery Gantt editor
Pros of jQueryGantt
- More feature-rich with advanced functionalities like resource management and critical path calculation
- Offers a wider range of customization options and styling capabilities
- Includes built-in export features for various formats (PDF, PNG, XML)
Cons of jQueryGantt
- Larger file size and potentially heavier performance impact due to more complex codebase
- Steeper learning curve for implementation and customization
- Dependency on jQuery library, which may not be ideal for all projects
Code Comparison
jQueryGantt:
var g = new JSGantt.GanttChart(document.getElementById('GanttChartDIV'), 'week');
g.setShowRes(1);
g.setShowDur(1);
g.setShowComp(1);
g.Draw();
Gantt:
var tasks = [
{id: "Task 1", start: '2018-10-01', end: '2018-10-08'},
{id: "Task 2", start: '2018-10-03', end: '2018-10-06'}
];
var gantt = new Gantt("#gantt", tasks);
The code comparison shows that jQueryGantt requires more setup and configuration, while Gantt offers a simpler initialization process. jQueryGantt provides more granular control over chart features, whereas Gantt focuses on a streamlined approach for basic Gantt chart functionality.
Gantt Gantt Gantt Timeline Schedule Calendar [ javascript gantt, js gantt, projects gantt, timeline, scheduler, gantt timeline, reservation timeline, react gantt, angular gantt, vue gantt, svelte gantt, booking manager ]
Pros of gantt-schedule-timeline-calendar
- More feature-rich with advanced scheduling capabilities
- Supports multiple views (timeline, calendar, etc.)
- Highly customizable with extensive API and event handling
Cons of gantt-schedule-timeline-calendar
- Steeper learning curve due to increased complexity
- Larger file size and potentially higher performance overhead
- Less straightforward implementation for simple Gantt charts
Code Comparison
gantt-schedule-timeline-calendar:
import { GSTCResult } from 'gantt-schedule-timeline-calendar';
const gstc = GSTCResult({
element: document.getElementById('gstc'),
config: {
// Complex configuration options
}
});
gantt:
import { Gantt } from 'frappe-gantt';
const gantt = new Gantt("#gantt", tasks, {
// Simple configuration options
});
The code comparison shows that gantt-schedule-timeline-calendar requires more complex configuration, while gantt offers a simpler setup for basic Gantt charts. gantt-schedule-timeline-calendar provides more flexibility and features at the cost of increased complexity, whereas gantt focuses on simplicity and ease of use for straightforward Gantt chart implementations.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME

Frappe Gantt
A modern, configurable, Gantt library for the web.
Frappe Gantt
Gantt charts are bar charts that visually illustrate a project's tasks, schedule, and dependencies. With Frappe Gantt, you can build beautiful, customizable, Gantt charts with ease.
You can use it anywhere from hobby projects to tracking the goals of your team at the worksplace.
ERPNext uses Frappe Gantt.
Motivation
We needed a Gantt View for ERPNext. Surprisingly, we couldn't find a visually appealing Gantt library that was open source - so we decided to build it. Initially, the design was heavily inspired by Google Gantt and DHTMLX.
Key Features
- Customizable Views: customize the timeline based on various time periods - day, hour, or year, you have it. You can also create your own views.
- Ignore Periods: exclude weekends and other holidays from your tasks' progress calculation.
- Configure Anything: spacing, edit access, labels, you can control it all. Change both the style and functionality to meet your needs.
- Multi-lingual Support: suitable for companies with an international base.
Usage
Install with:
npm install frappe-gantt
Include it in your HTML:
<script src="frappe-gantt.umd.js"></script>
<link rel="stylesheet" href="frappe-gantt.css">
Or from the CDN:
<script src="https://cdn.jsdelivr.net/npm/frappe-gantt/dist/frappe-gantt.umd.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/frappe-gantt/dist/frappe-gantt.css">
Start using Gantt:
let tasks = [
{
id: '1',
name: 'Redesign website',
start: '2016-12-28',
end: '2016-12-31',
progress: 20
},
...
]
let gantt = new Gantt("#gantt", tasks);
Configuration
Frappe Gantt offers a wide range of options to customize your chart.
Option | Description | Possible Values | Default |
---|---|---|---|
arrow_curve | Curve radius of arrows connecting dependencies. | Any positive integer. | 5 |
auto_move_label | Move task labels when user scrolls horizontally. | true , false | false |
bar_corner_radius | Radius of the task bar corners (in pixels). | Any positive integer. | 3 |
bar_height | Height of task bars (in pixels). | Any positive integer. | 30 |
container_height | Height of the container. | auto - dynamic container height to fit all tasks - or any positive integer (for pixels). | auto |
column_width | Width of each column in the timeline. | Any positive integer. | 45 |
date_format | Format for displaying dates. | Any valid JS date format string. | YYYY-MM-DD |
upper_header_height | Height of the upper header in the timeline (in pixels). | Any positive integer. | 45 |
lower_header_height | Height of the lower header in the timeline (in pixels). | Any positive integer. | 30 |
snap_at | Snap tasks at particular intervel while resizing or dragging. | Any interval (see below) | 1d |
infinite_padding | Whether to extend timeline infinitely when user scrolls. | true , false | true |
holidays | Highlighted holidays on the timeline. | Object mapping CSS colors to holiday types. Types can either be a) 'weekend', or b) array of strings or date objects or objects in the format {date: ..., label: ...} | { 'var(--g-weekend-highlight-color)': 'weekend' } |
ignore | Ignored areas in the rendering | weekend or Array of strings or date objects (weekend can be present to the array also). | [] |
language | Language for localization. | ISO 639-1 codes like en , fr , es . | en |
lines | Determines which grid lines to display. | none for no lines, vertical for only vertical lines, horizontal for only horizontal lines, both for complete grid. | both |
move_dependencies | Whether moving a task automatically moves its dependencies. | true , false | true |
padding | Padding around task bars (in pixels). | Any positive integer. | 18 |
popup_on | Event to trigger the popup display. | click or hover | click |
readonly_progress | Disables editing task progress. | true , false | false |
readonly_dates | Disables editing task dates. | true , false | false |
readonly | Disables all editing features. | true , false | false |
scroll_to | Determines the starting point when chart is rendered. | today , start , end , or a date string. | today |
show_expected_progress | Shows expected progress for tasks. | true , false | false |
today_button | Adds a button to navigate to todayâs date. | true , false | true |
view_mode | The initial view mode of the Gantt chart. | Day , Week , Month , Year . | Day |
view_mode_select | Allows selecting the view mode from a dropdown. | true , false | false |
Apart from these ones, two options - popup
and view_modes
(plural, not singular) - are available. They have "sub"-APIs, and thus are listed separately.
View Mode Configuration
The view_modes
option determines all the available view modes for the chart. It should be an array of objects.
Each object can have the following properties:
name
(string) - the name of view mode.padding
(interval) - the time above.step
- the interval of each columnlower_text
(date format string or function) - the format for text in lower header. Blank string for none. The function takes incurrentDate
,previousDate
, andlang
, and should return a string.upper_text
(date format string or function) - the format for text in upper header. Blank string for none. The function takes incurrentDate
,previousDate
, andlang
, and should return a string.upper_text_frequency
(number) - how often the upper text has a value. Utilized in internal calculation to improve performance.thick_line
(function) - takes incurrentDate
, returns Boolean determining whether the line for that date should be thicker than the others.
Three other options allow you to override general configuration for this view mode alone:
date_format
column_width
snap_at
For details, see the above table.
Popup Configuration
popup
is a function. If it returns
false
, there will be no popup.undefined
, the popup will be rendered based on manipulation within the function- a HTML string, the popup will be that string.
The function receives one object as an argument, containing:
task
- the task as an objectchart
- the entire Gantt chartget_title
,get_subtitle
,get_details
(functions) - get the relevant section as a HTML node.set_title
,set_subtitle
,set_details
(functions) - take in the HTML of the relevant sectionadd_action
(function) - accepts two parameters,html
andfunc
- respectively determining the HTML of the action and the callback when the action is pressed.
API
Frappe Gantt exposes a few helpful methods for you to interact with the chart:
Name | Description | Parameters |
---|---|---|
.update_options | Re-renders the chart after updating specific options. | new_options - object containing new options. |
.change_view_mode | Updates the view mode. | view_mode - Name of view mode or view mode object (see above) and maintain_pos - whether to go back to current scroll position after rerendering, defaults to false . |
.scroll_current | Scrolls to the current date | No parameters. |
.update_task | Re-renders a specific task bar alone | task_id - id of task and new_details - object containing the task properties to be updated. |
Development Setup
If you want to contribute enhancements or fixes:
- Clone this repo.
cd
into project directory.- Run
pnpm i
to install dependencies. pnpm run build
to build files - orpnpm run build-dev
to build and watch for changes.- Open
index.html
in your browser. - Make your code changes and test them.
Top Related Projects
GPL version of Javascript Gantt Chart
🍞📅A JavaScript calendar that has everything you need.
jQuery Gantt editor
Gantt Gantt Gantt Timeline Schedule Calendar [ javascript gantt, js gantt, projects gantt, timeline, scheduler, gantt timeline, reservation timeline, react gantt, angular gantt, vue gantt, svelte gantt, booking manager ]
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot