Hello. As we see here the bonding 15 , is outside grp opn #2.but due to its identation it seems inside the grp 2.so i want separate identation for opn outside grps?
Like bonding 15 at the level of grps and other opn inside grps as it is
Hello. As we see here the bonding 15 , is outside grp opn #2.but due to its identation it seems inside the grp 2.so i want separate identation for opn outside grps?
Hello,
You can change the indent for “bonding15” by inserting a div
container with a specific width using the grid_blank
template:
gantt.templates.grid_blank = (task) => {
return `<div style='width:1px; float:left; height:100%'></div>`
};
Additionally, you can adjust the indentation for tasks like “riveting1”, “riveting2”, and other child tasks using the grid_indent
template:
gantt.templates.grid_indent = (task) => {
return `<div style='width:30px; float:left; height:100%'></div>`
};
Here is an example: DHTMLX Snippet Tool