使用Google Visualization API中的Org Chart,是否可以将图表翻转为垂直布局而非水平布局。
答案 0 :(得分:7)
答案 1 :(得分:1)
GetOrgChart jQuery小部件具有oeriantation选项以显示垂直组织结构图
GetOrgChart小部件的方向。
默认值:getOrgChart.RO_TOP
代码示例:
$("#people").getOrgChart({
orientation: getOrgChart.RO_LEFT,
dataSource: [
{ id: 1, parentId: null, Name: "Amber McKenzie"},
{ id: 2, parentId: 1, Name: "Ava Field"},
{ id: 3, parentId: 1, Name: "Evie Johnson"}]
});