Task relationship

8 Mar 20181 minute to read

You can show the relationship between two tasks in the Gantt control. These relationships are categorized into four types based on the start and finish date of the task.

Start to start(SS)

You cannot start a task until the other task also starts.

Start to finish(SF)

You cannot finish a task until the other task is started.

Finish to start(FS)

You cannot start a task until the other task is completed.

Finish to finish(FF)

You cannot finish a task until the other task is completed.

The following code example shows how to show the predecessor in the Gantt control:

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
          e-predecessormapping="predecessor" 
          >
       </div>
    </body>

    The following screenshot displays the output of the above code: