我正在使用getOrgChart,并想知道是否可以有多个根元素。例如,我有两位经理,他们下面有人。我想独立展示两位经理及其员工,而不是列出他们的共同经理。
答案 0 :(得分:1)
是的,可以将parentId设置为null
运行下面的代码段
var orgchart = new getOrgChart(document.getElementById("people"),{
enableEdit: false,
dataSource: [
{ id: 1, parentId: null, Name: "Ivan"},
{ id: 2, parentId: 1, Name: "Ava Field"},
{ id: 3, parentId: 1, Name: "Evie Johnson"},
{ id: 4, parentId: null, Name: "Amber McKenzie"},
{ id: 5, parentId: 4, Name: "Dragan"},
{ id: 6, parentId: 4, Name: "Petkan"}
]
});

html, body {margin: 0px; padding: 0px;height: 100%; overflow: hidden; }
#people {width: 100%;height: 100%; }

<link href="http://www.getorgchart.com/GetOrgChart/getorgchart/getorgchart.css" rel="stylesheet"/>
<script src="http://www.getorgchart.com/GetOrgChart/getorgchart/getorgchart.js"></script>
<div id="people"></div>
&#13;