id String|Number|Object

The mandatory unique identifier of the dependency.

Example - set the identifier of a dependency

<script>
var dependency = new kendo.data.GanttDependency({
    id: 1,
    predecessorId: 1,
    successorId: 2,
    type: 0
});
</script>
In this article