- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Mike Bostock 的 Hierarchical Edge Bundling 示例在 d3.js 中:
https://bl.ocks.org/mbostock/7607999
我做的事情略有不同:在我的例子中,节点可以多次拥有相同的 child ,例如:
[
{"name": A, "imports": [B, C, C, D]}
{"name": B, "imports": [A, C, D, D]}
{"name": C, "imports": [B, D]}
{"name": D, "imports": [B, A]}
]
这似乎是可能的。但是,当链接具有相同的源节点和目标节点时,它们会直接绘制在 teach other 之上。我的可视化现在看起来像这样:
现在我要做的是为每个具有相同源节点和目标节点的链接稍微更改链接的 curveBundle,以便这两个节点之间的所有链接都变得可见(而不是绘制在彼此之上).
执行此操作的最佳方法是什么?
这是构建链接的地方:
let line = d3.radialLine()
.curve(d3.curveBundle.beta(0.85))
.radius(function(d) { return d.y; })
.angle(function(d) { return d.x / 180 * Math.PI; });
let link = canvas.append("g").selectAll(".link"),
node = canvas.append("g").selectAll(".node");
let root = packageHierarchy(arr)
.sum(function(d) { return d.size; });
cluster(root);
link = link
.data(packageImports(root.leaves()))
.enter().append("path")
.each(function(d) { d.source = d[0], d.target = d[d.length-1]; })
.attr("class", "link")
.attr("d", line);
这是包含我的数据的 json 对象:
Array (called 'arr' in the code)
这是我的全部代码:
function movementPath(arr) {
let diameter = 800,
radius = diameter / 2,
innerRadius = radius - 120;
let cluster = d3.cluster()
.size([360, innerRadius]);
let line = d3.radialLine()
.curve(d3.curveBundle.beta(0.85))
.radius(function(d) { return d.y; })
.angle(function(d) { return d.x / 180 * Math.PI; });
let link = canvas.append("g").selectAll(".link"),
node = canvas.append("g").selectAll(".node");
let root = packageHierarchy(arr)
.sum(function(d) { return d.size; });
cluster(root);
link = link
.data(packageImports(root.leaves()))
.enter().append("path")
.each(function(d) { d.source = d[0], d.target = d[d.length-1]; })
.attr("class", "link")
.attr("d", line);
node = node
.data(root.leaves())
.enter().append("text")
.attr("class", "node")
.attr("dy", "0.31em")
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + (d.y + 8) + ",0)" + (d.x < 180 ? "" : "rotate(180)"); })
.attr("text-anchor", function(d) { return d.x < 180 ? "start" : "end"; })
.text(function(d) { return d.data.key; })
.on("mouseover", mouseovered)
.on("mouseout", mouseouted);
function mouseovered(d) {
node
.each(function(n) { n.target = n.source = false; });
link
.classed("link--target", function(l) { if (l.target === d) return l.source.source = true; })
.classed("link--source", function(l) { if (l.source === d) return l.target.target = true; })
.filter(function(l) { return l.target === d || l.source === d; })
.raise();
node
.classed("node--target", function(n) { return n.target; })
.classed("node--source", function(n) { return n.source; });
}
function mouseouted(d) {
link
.classed("link--target", false)
.classed("link--source", false);
node
.classed("node--target", false)
.classed("node--source", false);
}
// Lazily construct the package hierarchy from class names.
function packageHierarchy(classes) {
let map = {};
function find(name, data) {
let node = map[name], i;
if (!node) {
node = map[name] = data || {name: name, children: []};
if (name.length) {
node.parent = find(name.substring(0, i = name.lastIndexOf(".")));
node.parent.children.push(node);
node.key = name.substring(i + 1);
}
}
return node;
}
classes.forEach(function(d) {
find(d.name, d);
});
return d3.hierarchy(map[""]);
}
// Return a list of imports for the given array of nodes.
function packageImports(nodes) {
let map = {},
imports = [];
// Compute a map from name to node.
nodes.forEach(function(d) {
map[d.data.name] = d;
});
// For each import, construct a link from the source to target node.
nodes.forEach(function(d) {
if (d.data.imports) d.data.imports.forEach(function(i) {
imports.push(map[d.data.name].path(map[i]));
});
});
return imports;
}
编辑:在回答 martwetzels 之后,我的可视化效果如下所示:
最佳答案
曲线在您的代码中只计算一次。从下面替换代码中的片段:
function lineConstructor () {
let manipulator = 0.7+(Math.random()*0.3)
console.log(manipulator)
return d3.radialLine()
.curve(d3.curveBundle.beta(manipulator))
.radius(function(d) { return d.y; })
.angle(function(d) { return d.x / 180 * Math.PI; });
}
link = link
.data(packageImports(root.leaves()))
.enter().append("path")
.each(function(d) { d.source = d[0], d.target = d[d.length - 1]; })
.attr("class", "link")
.each(function(d,i){
d3.select(this)
.attr("d", lineConstructor());
})
不是将曲线应用于所有元素,选择中的每个元素都会收到一个介于 0.7 和 1 之间的随机 d3.curveBundle.beta()
值。(请随意更改此值)。如果您想根据数据影响参数,也可以将 d、i 参数传递给 lineConstructor
。
关于d3.js: Hierarchical Edge Bundling 分别为每个链接更改 curveBundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50272338/
我想将单独的背景渐变应用于 Pandas 数据框中的不同列 a b c ----- 1 2 3 4 5 6 9 2 3 我想要 a 列的背景渐变和另一列的不同背景渐变。 我怎么做? 非常感谢。 最佳答
我有一些非常基本的饼图数据。 Yes: 189.84 (57.03%) No: 252 (42.97%) Abstain: 0 (0%) 当我在此 URL 请求 google 饼图时
我目前正在使用通常很棒的 appcompat-v7我的应用程序中的库,我正在尝试为我的 CheckBoxes 着色无需更改 Toolbar 中的图标颜色(如后退箭头或那三个点)。 按照目前的样子 -
我正在通过使用默认用户名“root”和密码设置为默认“”登录mysql服务器phpMyAdmin,但我无法登录。很高兴知道解决这个问题的可行解决方案。我正在通过 wamp 服务器登录。 最佳答案 默认
我是一名优秀的程序员,十分优秀!