gpt4 book ai didi

d3.js - 在有向力图中以交互方式固定节点

转载 作者:行者123 更新时间:2023-12-04 21:18:01 27 4
gpt4 key购买 nike

我目前正在使用一个相当简单但很大的力导向图,我希望我的用户能够以他们当时认为合适的方式组织该图。为此,我想让他们以交互方式固定节点的位置。锁定节点的方法由我决定;我在考虑双击该节点或在将鼠标悬停在/捕获该节点时按下一个键。

我不确定如何执行此操作,也找不到任何示例,非常感谢您的帮助。

非常感谢。

最佳答案

这是一个示例,您可以单击(或拖动)一个节点,该节点在放置后将具有固定位置。

   var node_drag = d3.behavior.drag()
.on("dragstart", dragstart)
.on("drag", dragmove)
.on("dragend", dragend);

function dragstart(d, i) {
force.stop() // stops the force auto positioning before you start dragging
}

function dragmove(d, i) {
d.px += d3.event.dx;
d.py += d3.event.dy;
d.x += d3.event.dx;
d.y += d3.event.dy;
tick(); // this is the key to make it work together with updating both px,py,x,y on d !
}

function dragend(d, i) {
d.fixed = true; // of course set the node to fixed so the force doesn't include the node in its auto positioning stuff
tick();
force.resume();
}

完整代码 here .

关于d3.js - 在有向力图中以交互方式固定节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11584757/

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