我正在使用 getOrgChart 并想知道是否可以有多个根元素。例如,我有两个经理,他们的下属有人员。我不想列出他们共同的经理,而是独立地显示这两位经理及其员工。
问问题
792 次
1 回答
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>
于 2017-01-18T20:11:03.030 回答