D3.js 缩放和平移可折叠树图
Posted
技术标签:
【中文标题】D3.js 缩放和平移可折叠树图【英文标题】:D3.js Zooming and panning a collapsible tree diagram 【发布时间】:2013-06-28 15:26:02 【问题描述】:我正在使用 D3.js 绘制一个可折叠的树形图,就像在 example 中一样。它工作得很好,但是当它进入其正常功能时,图表的大小可能会发生巨大变化(即,而不是我现在拥有的几个节点,我将拥有更多很多)。
我想让 SVG 区域滚动,我已经尝试了我在网上找到的所有方法以使其工作,但没有成功。我得到的最好的工作是使用d3.behaviour.drag
,我在其中拖动整个图表。它远非最佳,并且有很多故障,但它有点可用。
即便如此,我还是想稍微清理一下,我意识到 d3.behaviour.zoom
也可以用于平移 SVG 区域,根据 API 文档。
问题:谁能解释一下如何使它适应我的代码?
我希望能够平移带有图表的 SVG 区域,如果可能的话,让它对一些误用做出反应,即尝试将图表平移出视口,并启用缩放到最大视口尺寸...
这是我目前的代码:
var realWidth = window.innerWidth;
var realHeight = window.innerHeight;
function load()
callD3();
var m = [40, 240, 40, 240],
w = realWidth -m[0] -m[0],
h = realHeight -m[0] -m[2],
i = 0,
root;
var tree = d3.layout.tree()
.size([h, w]);
var diagonal = d3.svg.diagonal()
.projection(function(d) return [d.y, d.x]; );
var vis = d3.select("#box").append("svg:svg")
.attr("class","svg_container")
.attr("width", w)
.attr("height", h)
.style("overflow", "scroll")
.style("background-color","#EEEEEE")
.append("svg:g")
.attr("class","drawarea")
.attr("transform", "translate(" + m[3] + "," + m[0] + ")")
;
var botao = d3.select("#form #button");
function callD3()
//d3.json(filename, function(json)
d3.json("D3_NEWCO_tree.json", function(json)
root = json;
d3.select("#processName").html(root.text);
root.x0 = h / 2;
root.y0 = 0;
botao.on("click", function()toggle(root); update(root););
update(root);
);
function update(source)
var duration = d3.event && d3.event.altKey ? 5000 : 500;
// Compute the new tree layout.
var nodes = tree.nodes(root).reverse();
// Normalize for fixed-depth.
nodes.forEach(function(d) d.y = d.depth * 50; );
// Update the nodes…
var node = vis.selectAll("g.node")
.data(nodes, function(d) return d.id || (d.id = ++i); );
// Enter any new nodes at the parent's previous position.
var nodeEnter = node.enter().append("svg:g")
.attr("class", "node")
.attr("transform", function(d) return "translate(" + source.y0 + "," + source.x0 + ")"; )
.on("click", function(d) toggle(d); update(d); );
nodeEnter.append("svg:circle")
.attr("r", function(d)
return Math.sqrt((d.part_cc_p*1))+4;
)
.attr("class", function(d) return "level"+d.part_level; )
.style("stroke", function(d)
if(d._children)return "blue";
)
;
nodeEnter.append("svg:text")
.attr("x", function(d) return d.children || d._children ? -((Math.sqrt((d.part_cc_p*1))+6)+this.getComputedTextLength() ) : Math.sqrt((d.part_cc_p*1))+6; )
.attr("y", function(d) return d.children || d._children ? -7 : 0; )
.attr("dy", ".35em")
.attr("text-anchor", function(d) return d.children || d._children ? "end" : "start"; )
.text(function(d)
if(d.part_level>0)return d.name;
else
if(d.part_multi>1)return "Part " + d.name+ " ["+d.part_multi+"]";
elsereturn "Part " + d.name;
)
.attr("title",
function(d)
var node_type_desc;
if(d.part_level!=0)node_type_desc = "Labour";elsenode_type_desc = "Component";
return ("Part Name: "+d.text+"<br/>Part type: "+d.part_type+"<br/>Cost so far: "+d3.round(d.part_cc, 2)+"€<br/>"+"<br/>"+node_type_desc+" cost at this node: "+d3.round(d.part_cost, 2)+"€<br/>"+"Total cost added by this node: "+d3.round(d.part_cost*d.part_multi, 2)+"€<br/>"+"Node multiplicity: "+d.part_multi);
)
.style("fill-opacity", 1e-6);
// Transition nodes to their new position.
var nodeUpdate = node.transition()
.duration(duration)
.attr("transform", function(d) return "translate(" + d.y + "," + d.x + ")"; );
nodeUpdate.select("circle")
.attr("r", function(d)
return Math.sqrt((d.part_cc_p*1))+4;
)
.attr("class", function(d) return "level"+d.part_level; )
.style("stroke", function(d)
if(d._children)return "blue";elsereturn null;
)
;
nodeUpdate.select("text")
.style("fill-opacity", 1);
// Transition exiting nodes to the parent's new position.
var nodeExit = node.exit().transition()
.duration(duration)
.attr("transform", function(d) return "translate(" + source.y + "," + source.x + ")"; )
.remove();
nodeExit.select("circle")
.attr("r", function(d)
return Math.sqrt((d.part_cc_p*1))+4;
);
nodeExit.select("text")
.style("fill-opacity", 1e-6);
// Update the links…
var link = vis.selectAll("path.link")
.data(tree.links(nodes), function(d) return d.target.id; );
// Enter any new links at the parent's previous position.
link.enter().insert("svg:path", "g")
.attr("class", "link")
.attr("d", function(d)
var o = x: source.x0, y: source.y0;
return diagonal(source: o, target: o);
)
.transition()
.duration(duration)
.attr("d", diagonal);
// Transition links to their new position.
link.transition()
.duration(duration)
.attr("d", diagonal);
// Transition exiting nodes to the parent's new position.
link.exit().transition()
.duration(duration)
.attr("d", function(d)
var o = x: source.x, y: source.y;
return diagonal(source: o, target: o);
)
.remove();
$('svg text').tipsy(
fade:true,
gravity: 'nw',
html:true
);
// Stash the old positions for transition.
nodes.forEach(function(d)
d.x0 = d.x;
d.y0 = d.y;
);
var drag = d3.behavior.drag()
.origin(function()
var t = d3.select(this);
return x: t.attr("x"), y: t.attr("y");
)
.on("drag", dragmove);
d3.select(".drawarea").call(drag);
// Toggle children.
function toggle(d)
if (d.children)
d._children = d.children;
d.children = null;
else
d.children = d._children;
d._children = null;
function dragmove()
d3.transition(d3.select(".drawarea"))
.attr("transform", "translate(" + d3.event.x +"," + d3.event.y + ")");
【问题讨论】:
【参考方案1】:您可以在此处看到(大部分)工作实现:http://jsfiddle.net/nrabinowitz/fF4L4/2/
这里的关键部分:
在svg
元素上调用d3.behavior.zoom()
。这需要svg
元素设置pointer-events: all
。您也可以在子元素上调用它,但如果您希望整个事物平移和缩放,我看不出有什么理由,因为您基本上希望整个 SVG 区域响应平移/缩放事件。
d3.select("svg")
.call(d3.behavior.zoom()
.scaleExtent([0.5, 5])
.on("zoom", zoom));
在此处设置scaleExtent
使您能够限制缩放比例。您可以将其设置为 [1, 1]
以完全禁用缩放,或者以编程方式将其设置为内容的最大大小,如果这是您想要的(我不确定这里到底需要什么)。
zoom
函数类似于您的 dragmove
函数,但包括比例因子并设置平移偏移限制(据我所知,d3 没有任何内置的 panExtent
支持):
function zoom()
var scale = d3.event.scale,
translation = d3.event.translate,
tbound = -h * scale,
bbound = h * scale,
lbound = (-w + m[1]) * scale,
rbound = (w - m[3]) * scale;
// limit translation to thresholds
translation = [
Math.max(Math.min(translation[0], rbound), lbound),
Math.max(Math.min(translation[1], bbound), tbound)
];
d3.select(".drawarea")
.attr("transform", "translate(" + translation + ")" +
" scale(" + scale + ")");
(老实说,我不认为我在这里有正确的左右阈值的逻辑 - 这似乎不会在放大时限制正确拖动。留给读者作为练习:) .)
为了让这里的事情更简单,让g.drawarea
元素没有初始变换会有所帮助 - 所以我在外部包装器中添加了另一个g
元素来设置边距偏移:
vis // snip
.append("svg:g")
.attr("class","drawarea")
.append("svg:g")
.attr("transform", "translate(" + m[3] + "," + m[0] + ")");
这里的其余更改只是为了让您的代码在 JSFiddle 中更好地工作。这里缺少一些细节,但希望这足以让您入门。
【讨论】:
非常感谢您,Rabinowitz 先生... 干得好,谢谢!奇迹般有效!我在这里的尝试失败了,正是因为将d3.behavior.zoom
应用到了错误的包装器上——它只是疯狂地跳来跳去......但这真的很好用(即使在浏览器上有点慢/重)......
非常好用,除了margin数组不清楚
嗨 - 我有兴趣使用缩放功能,无论缩放如何,总有固定大小的文本。所以如果有更多的分支,并且用户缩小,分支现在变得太小而且太多。我想删除其中的一些,只在需要时留下剩余的分支以使其具有可读大小。你认为这可能吗?以上是关于D3.js 缩放和平移可折叠树图的主要内容,如果未能解决你的问题,请参考以下文章