groupHeaderTemplate String|Function (default: null)

Provides an option to customize the default template for the group label (using the field value and name by default).

Example

<div id="orgchart"></div>

<script>
    $("#orgchart").kendoOrgChart({
        groupField: "title",
        groupHeaderTemplate: "<span>#: value # #: field #</span>",
        dataSource: [
            { id: 1, name: "Jane", title: "Boss", expanded: true },
            { id: 2, name: "John", title: "Lead", expanded: true, parentId: 1 },
            { id: 3, name: "Jill", title: "Worker", expanded: true, parentId: 2 },
            { id: 4, name: "James", title: "Worker", expanded: true, parentId: 2 },
        ]
    });
</script>
In this article