javascript - 在多焦点 d3 力布局中重新定位节点

标签 javascript d3.js force-layout

我在多焦点力布局中有三组节点。每个节点都已在 HTML 中呈现。

这是我的强制布局代码:

var node = this.svg.selectAll('path')
    .data(data);

// foci is a dictionary that assigns the x and y value based
// on what group a node belongs to.
var foci = {
    "Blue" : {
         "x" : xScale(0),
         "y": height / 2
    },
    "Red": {
         "x" : xScale(1),
         "y": height / 2
    },
    "Purple": {
         "x" : xScale(2),
         "y": height / 2
    },
};

// This helped me position the nodes to their assigned clusters.
var forceX = d3.forceX((d) => foci[d.group].x);
var forceY = d3.forceY((d) => foci[d.group].y);

var force = d3.forceSimulation(data)
    .force('x', forceX)
    .force('y', forceY)
    .force("collide", d3.forceCollide(8))
    .on('tick', function() {
         node
            .attr('transform', (d) => {
                return 'translate(' + (d.x - 100) + ',' + (-d.y + 25) + ')';
            });
        });

到目前为止,我已经能够完成的是根据下拉列表中的更改重新绘制布局,这会重新初始化 d3.forceSimulation() 并使集群在页面上快速返回,就像您可以在下面的 gif 中看到。

这不是我想要的。我正在努力使重新排列尽可能无缝。

更新:通过不重新初始化 d3.forceSimulation(),我可以将新数据绑定(bind)到节点并更改它们的颜色。

最佳答案

无需重新初始化d3.forceSimulation(),您可以使用restart() 简单地重新加热 模拟。 :

Restarts the simulation’s internal timer and returns the simulation. In conjunction with simulation.alphaTarget or simulation.alpha, this method can be used to “reheat” the simulation during interaction, such as when dragging a node, or to resume the simulation after temporarily pausing it with simulation.stop.

我创建了一个演示来向您展示,使用了您的部分代码。在此演示中,按钮随机化每个数据点的颜色。之后,我们重新加热模拟:

force.alpha(0.8).restart();

选中它,点击“随机化”:

var width = 500, height = 200;

var svg = d3.select("#svgdiv")
	.append("svg")
	.attr("width", width)
	.attr("height", height);
	
var data = d3.range(100).map(function(d, i){
	return {
	group: Math.random()*2 > 1 ? "blue" : "red",
	id: i
	}
});

var xScale = d3.scaleOrdinal()
	.domain([0, 1])
	.range([100, width-100]);

var foci = {
    "blue" : {
         "x" : xScale(0),
         "y": height / 2
    },
    "red": {
         "x" : xScale(1),
         "y": height / 2
    }
};

var forceX = d3.forceX((d) => foci[d.group].x);
var forceY = d3.forceY((d) => foci[d.group].y);

var node = svg.append("g")
            .attr("class", "nodes")
            .selectAll("circle")
            .data(data)
            .enter().append("circle")
            .attr("r", 5)
						.attr("fill", (d)=>d.group);


var force = d3.forceSimulation(data)
    .velocityDecay(0.65)
    .force('x', forceX)
    .force('y', forceY)
    .force("collide", d3.forceCollide(8));
		
force.nodes(data)
    .on('tick', function() {
         node
            .attr('transform', (d) => {
                return 'translate(' + (d.x) + ',' + (d.y) + ')';
            });
        });
				
d3.select("#btn").on("click", function(){
    data.forEach(function(d){
		d.group = Math.random()*2 > 1 ? "blue" : "red"
		})
		node.transition().duration(500).attr("fill", (d)=>d.group);
		setTimeout(function(){
		force.nodes(data);
		force.alpha(0.8).restart();
		}, 1500)
})
<script src="https://d3js.org/d3.v4.min.js"></script>
<button id="btn">Randomize</button>
<div id="svgdiv"><div>

PS:我将reheat 放在setTimeout 中,因此您可以先看到圆圈改变颜色,然后移动到焦点位置。

关于javascript - 在多焦点 d3 力布局中重新定位节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40413970/

相关文章:

javascript - 在 D3 树中,如何以编程方式关闭选定深度的所有节点(例如仅孙子节点)(无需单击节点)

javascript - 无法将基于时间的 x 轴上的刻度数设置为条形图的自定义数量

javascript - 捕获 svg 中重叠 g 元素中的指针事件

javascript - 如何根据名称查找某个节点?

javascript - 多个力布局导致滴答函数冲突

javascript - 如何在 laravel 的 onclick 函数上传递值

javascript - 向 Angular 2 中的子组件发送搜索输入值

javascript - 如何在javascript中解析日期中的 "30-06-2017 07:55 pm"

javascript - 合并对象数组

javascript - D3.JS 获取点击对象绑定(bind)数据的引用