Google Visualization API - 组织结构图布局

时间:2010-01-19 19:29:08

标签: google-visualization orgchart

使用Google Visualization API中的Org Chart,是否可以将图表翻转为垂直布局而非水平布局。

2 个答案:

答案 0 :(得分:7)

不幸的是没有。目前不可能。

Google Visualization API问题跟踪器Issue #47已请求此功能。

您可能想要解决此问题,让Google了解您对此功能的兴趣。

答案 1 :(得分:1)

GetOrgChart jQuery小部件具有oeriantation选项以显示垂直组织结构图

GetOrgChart小部件的方向。

  • getOrgChart.RO_TOP
  • getOrgChart.RO_BOTTOM
  • getOrgChart.RO_RIGHT
  • getOrgChart.RO_LEFT

默认值: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"}]
});

JSFIDDLE Demo