垂直堆积caprica jquery组织结构图

时间:2015-02-20 19:03:19

标签: javascript jquery html

我正在使用caprica's jquery org charg plugin创建interactive work breakdown structures

我想让第3级垂直组织而不是横向组织like this image

我正在使用这个小提琴http://jsfiddle.net/decker2/0h48e1g4/2/

我认为我需要更改此代码,但不断弄乱表格

        // Make this node...
    var $nodeRow = $("<tr/>").addClass("nodes");
    var $nodeCell = $("<td/>").addClass("node").attr("colspan", 2);
    var $childNodes = $node.children("ul:first").children("li");
    if ($childNodes.length > 1) {
        $nodeCell.attr("colspan", $childNodes.length*2);
    }

0 个答案:

没有答案