successorIdString|Number|Object
The  mandatory id of the successor task.
Example - set the successorId of a dependency
<script>
var dependency = new kendo.data.GanttDependency({
    id: 1,
    predecessorId: 1,
    successorId: 2,
    type: 0
});
</script>In this article