如何增加力图的链接长度。我的代码写在下面。我应该改变什么?
此外,我想在鼠标悬停时标记“仅子节点”,父节点具有其标签。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Force</title>
<style type="text/css">
circle.node {
cursor: pointer;
stroke: #3182bd;
stroke-width: 1.5px;
}
line.link {
fill: none;
stroke: #9ecae1;
stroke-width: 1.5px;
}
</style>
</head>
<body>
<div id="chart"></div>
<script src="../d3/d3.v3.min.js"></script>
<script type="text/javascript">
var w = 960,
h = 500,
node,
link,
root;
var force = d3.layout.force()
.on("tick", tick)
.size([w*2, h*2]);
var vis = d3.select("#chart").append("svg:svg")
.attr("width", w*2)
.attr("height", h*2);
var diagonal = d3.svg.diagonal.radial()
.projection(function(d) { return [d.y, d.x / (180) * Math.PI]; });
d3.json("try.json", function(json) {
root = json;
update();
});
function update() {
var nodes = flatten(root),
links = d3.layout.tree().links(nodes);
// Restart the force layout.
root.fixed=true;
root.x=900;
root.y=500;
force
.nodes(nodes)
.links(links)
.start();
// Update the links…
link = vis.selectAll("line.link")
.data(links, function(d) { return d.target.id; });
// Enter any new links.
link.enter().insert("svg:line", ".node")
.attr("class", "link")
.attr("x1", function(d) { return d.source.x+100; })
.attr("y1", function(d) { return d.source.y+100; })
.attr("x2", function(d) { return d.target.x+100; })
.attr("y2", function(d) { return d.target.y+100; });
// Exit any old links.
link.exit().remove();
// Update the nodes…
node = vis.selectAll("circle.node")
.data(nodes, function(d) { return d.id; })
.style("fill", color);
// Enter any new nodes.
node.enter().append("svg:circle")
.attr("class", "node")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
.attr("r", function(d) { return Math.sqrt(d.size) / 10 || 25; })
.style("fill", color)
.on("click", click)
.call(force.drag);
// Exit any old nodes.
node.exit().remove();
}
function tick() {
link.attr("x1", function(d) { return d.source.x-100; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x-100; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x-100; })
.attr("cy", function(d) { return d.y; });
}
// Color leaf nodes orange, and packages white or blue.
function color(d) {
return d._children ? "#3182bd" : d.children ? "#c6dbef" : "#fd8d3c";
}
// Toggle children on click.
function click(d) {
if (d.children) {
d._children = d.children;
d.children = null;
} else {
d.children = d._children;
d._children = null;
}
update();
}
// Returns a list of all nodes under the root.
function flatten(root) {
var nodes = [], i = 0;
function recurse(node) {
if (node.children) node.children.forEach(recurse);
if (!node.id) node.id = ++i;
nodes.push(node);
}
recurse(root);
return nodes;
}
</script>
</body>
</html>
答案 0 :(得分:9)
对于链接距离,您可以使用link.distance
。
以下是doc 目前关于此功能的内容:
如果指定了距离,则将距离访问者设置为指定的数字或函数,重新评估每个链接的距离访问者,并返回此力。如果未指定distance,则返回当前距离访问器,默认为:
function distance() {
return 30;
}
为每个链接调用距离访问器,传递链接及其从零开始的索引。然后在内部存储得到的数字,这样每个链接的距离只在初始化力时或者用新距离调用此方法时重新计算,而不是在力的每次应用中都被重新计算。
对于标签,请提出另一个问题。
答案 1 :(得分:1)
您可以在此处使用.distance来设置链接的异常或长度。
var forceLink = d3
.forceLink().id(function (d) {
return d.id;
})
.distance(function (d) {
return GetNodeDefaults(d.label).linkDistance;
})
.strength(0.1);
var simulation = d3.forceSimulation()
.force("link", forceLink)
.force("charge", d3.forceManyBody().strength(function (d, i) {
var a = i == 0 ? -2000 : -1000;
return a;
}).distanceMin(200).distanceMax(1000))
.force("center", d3.forceCenter(width / 2, height / 2))
.force("y", d3.forceY(0.01))
.force("x", d3.forceX(0.01))
.on("tick", ticked);
参考链接:https://github.com/d3/d3-force/blob/master/README.md#link_distance