Hello,
We are currently using the Bryntum Gantt on version 1.3.7 (planning to update to the 2.0 soon).
I would like to know if it's possible to customize the project header.
I saw we could customize the columns displayed for each task with the "columns" key.
Here is our current Gantt configurator object :
{
project: {
"calendar": "general",
"daysPerWeek": 5,
"daysPerMonth": 20
},
columns:
[
{type: "wbs", id: 'br_column_1'},
{type: "name", width: 250, id: 'br_column_2'},
{type: "startdate", id: 'br_column_3'},
{type: "enddate", id: 'br_column_3_1'},
{type: "duration", id: 'br_column_4_1'},
{type: "resourceassignment", width: 120, showAvatars: false, id: 'br_column_5'},
{type: "percentdone", showCircle: true, width: 70, id: 'br_column_6'},
{type: "predecessor", width: 112, id: 'br_column_7'},
{type: "successor", width: 112, id: 'br_column_8'},
{type: "schedulingmodecolumn", id: 'br_column_9'},
{type: "calendar", id: 'br_column_10'},
{type: "constrainttype", id: 'br_column_11'},
{type: "constraintdate", id: 'br_column_12'},
{type: "addnew", id: 'br_column_13'}
],
weekStartDay: 1,
}
Is there a way to customize the header too ? I could not find it in the documentation, but maybe I missed something.
We would like to display the PROJECT END next to the PROJECT START field on the header.
Thank you