idString|Number|Object
The unique identifier of the dependency.
Example - set the dependency id
<script>
var dependency = new kendo.data.GanttDependency({
    id: 1,
    predecessorId: 1,
    successorId: 2,
    type: 0
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(dependency.id); // outputs "1"
</script>In this article