我正在使用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);
}