Gantt is a complex widget created with Webix Jet, the MV* framework for Webix Library. It is a ready-to-use application with minimum configuration settings but has API for redefining the logic of inner modules.
You will need to study the source code to customize views and models.
Gantt is built as a Jet App and wrapped into a Webix view, so you can initialize Gantt in either of the ways.
The interface of Gantt is split into parts (views). Each view is a class that extends the JetView class and has own handlers for setting the configuration and logic.
The sources for interface parts (Jet Views) are located in the sources/views folder.
views
top.js
chart
index.js
...
Go to the Class Map page to see the list of all Jet views in Gantt and where they are in the interface.
Gantt models contain the logic for working with scales and data. They are defined as Jet Services.
The sources for models (Jet Services) are located in the sources/models folder.
models
Backend.js
Local.js
Operations.js
Helpers.js
Grouping.js
Service methods are called by the UI and can be called by a programmer as:
$$('gantt').getService('operations').addTask(obj);
Firstly, create you own view class by inheriting it from one of the default views or from gantt.views.JetView:
class CustomTree extends gantt.views.tree {
config() {
//get JSON object with configuration
const ui = super.config();
//exact changes depend on a particular view
ui.width = 200;
return ui;
}
init() {
// call default logic
super.init();
// custom logic below
this.doSomething();
}
doSomething() {
// do something on init
}
}
Secondly, replace the default view via the override map:
webix.ui({
view: 'gantt',
url: 'https://docs.webix.com/gantt-backend/',
override: new Map([[gantt.views.tree, CustomTree]]),
});
To add an extra column into the TreeTable with tasks, you need to change its JSON configuration:
class CustomTree extends gantt.views.tree {
config() {
const compact = this.getParam('compact', true);
const ui = super.config();
// adding new column for progress
ui.columns.splice(compact ? 3 : 2, 0, {
id: 'progress',
header: '~',
template: '#progress#%',
width: 40,
});
if (!compact) ui.width += 40;
return ui;
}
}
Related sample: Gantt: Adding an Extra Column
You can find more use cases in the How-tos article.
Notes
1. We do not recommend to remove any component from the interface as the inner logic might still try accessing it. Instead, hide the components.
class CustomInfo extends gantt.views['task/info'] {
init(view) {
// default logic
super.init(view);
// hide "Delete" button
view.queryView('button', 'all')[1].hide();
}
}
2. You can access component instances within a Jet view by:
It works for an inner component that is assigned the localId setting.
init() {
// default logic
super.init();
// get instance of the component with "form" localId
const form = this.$$("form");
}
init(view) {
// default logic
super.init();
// get instance of the first button
const button = view.queryView("button");
}
3. You can find out whether the app is currently compact from any view or service method as:
const compact = this.getParam("compact", true);
4. You can get state properties from any view or service method as:
const state = this.app.getState();
//or
const state = this.getParam("state");
Firstly, create your own service class and inherit it from one of the default services:
class MyBackend extends gantt.services.Backend {
tasks() {
// client-side data
return webix.promise.resolve(tasks);
}
}
Secondly, replace the default service via the override map:
webix.ui({
view: "gantt",
url: "https://docs.webix.com/gantt-backend/",
override: new Map([[gantt.services.Backend, MyBackend]]),
});
Related sample: Gantt: Local Data
You can find more information about Gantt Backend service in the Working with Server article.
Gantt is extremely flexible when it comes to customizations: you can change almost anything in it. However, keep in mind the following:
Code for Edge Сhromium must be with different syntax.