I have a simple set of tasks(23 total) with a number of links. The tasks all are run over about 1-2 hrs and the durations run anywhere from as low a say 5 min to 1-2 hrs or so. I can’t really find a time scale that make the Gantt useable in that the bars do not map to the time scale above. Any suggestions out there on how to solve this? This is my current config
gantt.config.scale_unit = "hour";
gantt.config.step = 1;
gantt.config.date_scale = "%g %a";
gantt.config.min_column_width = 20;
gantt.config.duration_unit = "minute";
gantt.config.duration_step = 60;
gantt.config.scale_height = 75;
gantt.config.subscales = [
{unit:"day", step:1, date : "%j %F, %l"},
{unit:"minute", step:15, date : "%i"}
];
Note that this example from the DOCS has the same basic problem
docs.dhtmlx.com/gantt/samples/0 … scale.html
While the subscale shows 15 min block, the length of the tasks seems to be in Hours but the Duration if the tasks are in minutes.