gpt4 book ai didi

javascript - d3.js 力导向图保持恒定的链接距离

转载 作者:行者123 更新时间:2023-11-28 07:42:23 25 4
gpt4 key购买 nike

有人知道如何在排斥节点的同时保持恒定的链接距离吗?

这是问题的示例(这是标准 FDG 示例,但节点较少)。

var graph = {
"nodes":[
{"name":"a","group":1},
{"name":"a","group":1},
{"name":"a","group":1},
{"name":"a","group":1},
{"name":"b","group":8}
],
"links":[
{"source":1,"target":0,"value":1},
{"source":2,"target":0,"value":1},
{"source":3,"target":0,"value":1},
{"source":4,"target":0,"value":1}
]
};
var width = 300,
height = 300;

var color = d3.scale.category20();

var force = d3.layout.force()
.charge(-120)
.linkDistance(30)
.size([width, height]);

var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);

var drawGraph = function(graph) {
force
.nodes(graph.nodes)
.links(graph.links)
.start();

var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function(d) { return Math.sqrt(d.value); });

var gnodes = svg.selectAll('g.gnode')
.data(graph.nodes)
.enter()
.append('g')
.classed('gnode', true)
.call(force.drag);

var node = gnodes.append("circle")
.attr("class", "node")
.attr("r", 5)
.style("fill", function(d) { return color(d.group); });

node.append("title")
.text(function(d) { return d.name; });

var labels = gnodes.append("text")
.text(function(d) { return d.name; })
.attr('text-anchor', 'middle')
.attr('font-size', 8.0)
.attr('font-weight', 'bold')
.attr('y', 2.5)
.attr('fill', d3.rgb(50,50,50))
.attr('class', 'node-label')
.append("svg:title")
.text(function(d) { return d.name; });

force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; })
.each(function(d) { console.log(Math.sqrt((d.source.x - d.target.x) * (d.source.x - d.target.x) + (d.source.y - d.target.y) * (d.source.y - d.target.y))); });

gnodes.attr("transform", function(d) {
return 'translate(' + [d.x, d.y] + ')';
});
});
};

drawGraph(graph);

http://jsfiddle.net/pkerpedjiev/vs3foo80/1/

有 1 个中心节点和 4 个附属节点。所有连杆的长度都应为 30,但由于排斥力,它们的长度稳定为 35。有没有办法抵消这一点,并使连杆长度收敛到所需的值 30,同时保持之间的排斥力非连接节点?

这类似于使链接力比排斥力强得多。然而,增加这一点会导致非常不稳定的行为。

提出这个问题的另一种方式是,是否有一种方法可以将节点彼此分散得尽可能远,同时保持所需的链路长度?

最佳答案

是的,使用.chargeDistance(30).chargeDistance() 设置确定充电时的最大距离,默认情况下为无限远。设置为 30 将您的费用设置为仅适用于 30 像素内的节点,并且应该为您提供您想要的行为。

这样做的缺点是,在大图表上,您将不再看到可以更快地展开图表的附加效果,并且布局将具有更加本地化的外观。为了实现类似的目标,我建议尝试使用与力算法的 alpha 参数(冷却时间)相关的动态 chargeDistance ,以便它从无限开始,然后向 30(或其他)移动,如下所示图表冷却下来。

关于javascript - d3.js 力导向图保持恒定的链接距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27863082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com