您可以在OrgChart中显示多少 primaryColumns 的上限。 我似乎无法添加超过 4 。如果您查看下面的示例,则不会呈现电子邮件地址。这是正确的行为吗?有没有办法覆盖这个设置?
$("#people").getOrgChart({
primaryColumns: ["name", "title","department", "phone", "email"],
dataSource:[{"id":1,"parentId":null,"name":"John Doe","positionId":"771","title":"Vice-President","location":"Location","department":"IT-Dallas","phone":"(333)-444-6363","email":"john.doe@domain.com","image":""}]
});
这是一个jsfiddle http://jsfiddle.net/w9Ax8/17/
答案 0 :(得分:1)
您需要为正在使用的主题添加更多textPoints。 See this fiddle
在主题对象中,我添加了一个自定义主题对象,并在其中添加了额外的textPoints:
...
textPointsNoImage: [{
x: 20,
y: 30,
width: 330
}, {
x: 20,
y: 50,
width: 330
}, {
x: 20,
y: 75,
width: 330
}, {
x: 20,
y: 95,
width: 330
}, {
x: 20,
y: 115,
width: 330
}, {
x: 20,
y: 125,
width: 330
}],
您需要为textPointsNoImage
和textPoints
数组执行此操作。
或者作为替代方案,.push()
个附加文本点对象进入您正在使用的主题中的数组。