我正在使用BalkanGraph插件,并且尝试将orgchart的第一个父节点对准svg的顶部而不是其中心。
我试图设置一个负的“ margin-top”,并增加了整个svg的高度,但是随之而来的是点击,效果不佳。
我唯一的css是这样的:
#tree {
width: 100%;
height: 630px;
border: 1px solid lightgray;
background-color: #fff;
}
我在Orgchart中使用的是:
var chart = new OrgChart(document.getElementById("tree"), {
mouseScroolBehaviour: BALKANGraph.action.zoom,
nodeMouseClickBehaviour: BALKANGraph.action.none,
scaleInitial: BALKANGraph.match.boundary,
collapse: {
level: 2,
allChildren: true
},
});
答案 0 :(得分:0)
将 align 选项设置为 BALKANGraph.ORIENTATION
var chart = new OrgChart(document.getElementById("tree"), {
align: BALKANGraph.ORIENTATION,
...
});