we have another question concerning the critical path and how it is displayed.
When we call the function to show the critical path, the path is shown as a red “link”. In places where regular links and the critical path meet, the regular links overlap the red line of the critical path. This makes it difficult to read and to see where the critical path is going.
Hello,
It can be fixed via CSS. You need to show critical links always on top of other links:
.gantt_critical_link .gantt_line_wrapper,
.gantt_critical_link .gantt_link_arrow,
.gantt_link_control {
z-index: 1;
}
There is also “gantt_link_control” element that is on top, otherwise you wouldn’t be able to create all types of links with critical tasks. snippet.dhtmlx.com/6344930bf