admin管理员组文章数量:1345129
I'm looking at this example that uses cluster layout to assign the X and Y coordinates to nodes on a dendrogram. How can I tell cluster to layout vertically, top down, instead of the default left to right?
I'm looking at this example that uses cluster layout to assign the X and Y coordinates to nodes on a dendrogram. How can I tell cluster to layout vertically, top down, instead of the default left to right?
Share Improve this question edited Jul 22, 2012 at 0:01 Brant Olsen 5,6645 gold badges39 silver badges53 bronze badges asked Jul 14, 2012 at 1:12 joshuapoehlsjoshuapoehls 35.4k11 gold badges53 silver badges61 bronze badges1 Answer
Reset to default 12For the example you link, just flip the use of the X and Y coordinates. This can be done by changing
var diagonal = d3.svg.diagonal()
.projection(function(d) { return [d.y, d.x]; });
and
var node = vis.selectAll("g.node")
.data(nodes)
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) { return "translate(" + d.y + "," + d.x + ")"; })
to
var diagonal = d3.svg.diagonal()
// Flip the values here.
.projection(function(d) { return [d.x, d.y]; });
and
var node = vis.selectAll("g.node")
.data(nodes)
.enter().append("g")
.attr("class", "node")
// Flip the values here.
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
Here is a JSFiddle showing the above changes in action.
本文标签:
版权声明:本文标题:javascript - How do I tell D3 to make the dendrogram vertical (top down) instead of left to right? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770554a2536043.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论