schema.model Object

The model configuration of the OrgChartDataSource. See kendo.data.OrgChartModel for more info.

Example

<script>
  var dataSource = new kendo.data.OrgChartDataSource({
    data: [
      { EmployeeID: 1, name: "Daryl Sweeney", title: "CEO", parentId: null },
      { EmployeeID: 2, name: "Guy Wooten", title: "Chief Technical Officer", parentId: 1 },
      { EmployeeID: 3, name: "Priscilla Frank", title: "Chief Product Officer", parentId: 1 }
    ],
    schema: {
      model: {
        id: "EmployeeID",
        parentId:"parentId",
        expanded: true
      }
    }
  });
</script>
In this article