我试图在力布局下为主图节点创建卫星节点。每个节点都应附加一个或多个相应的卫星节点。
这是一个显示意图的jsfiddle(这个例子有一个固定的位置,没有任何力量统治卫星节点。
http://jsfiddle.net/guidoextras/zLt2sne3/1/
node.append("circle")
.attr("class", "planet_node")
.attr("r", function(d) { return d.weight * 2 + 12; })
.style("fill", function(d) { return color(1/d.rating); });
node.append("circle")
.attr("r", 5)
.attr("class", "satellite_node")
.attr("cx", function(d) { return d.weight * 2 + 25; })
.attr("cy", 0)
.style("stroke-width", "1")
.style("stroke", "black")
.style("fill", "cyan");
卫星节点应该:
我想要实现这一目标我必须:
答案 0 :(得分:1)
这是我的发现:
1)正常地创建节点到卫星节点
2)在节点之间创建Link []数据时,定义属性“type”并将其设置为“planet”以用于行星之间的链接,并将“卫星”设置为卫星节点与其行星之间的链接
node[0] = {"name":"planet-1"}
node[1] = {"name":"satellite-to-planet-1"}
node[2] = {"name":"planet2"}
node[3] = {"name":"planet3"}
link[0] = {"source":0, "target":1, "type":"SATELLITE"}
link[1] = {"source":2, "target":3, "type":"PLANET"}
3)按如下方式设置力布局属性:
this.force = d3.layout.force()
.nodes(this.nodes)
.links(this.links)
.charge(-400)
.linkDistance( function (d) { return ( d.type == "SATELLITE" ? "10" : 120 ) } )
.size([this.w, this.h])
.on("tick", tick);
这使得行星到卫星链路比其他链路更短