gpt4 book ai didi

javascript - d3.js 力定向图 : How to make node size depends on the value of the links?

转载 作者:行者123 更新时间:2023-12-01 02:44:34 25 4
gpt4 key购买 nike

我有这样的数据:

var nodes = [
{
"id": "A",
"label": "Data A",
"group": "0",
"level": "0"
}, {
"id": "B",
"label": "Data B",
"group": "1",
"level": "1"
},
// etc //
]

var links = [
{
"source": "A",
"target": "B",
"strength": "0.5",
"value": "276"
}, {
"source": "A",
"target": "C",
"strength": "0.5",
"value": "866"
},
// etc //
]

我一直在尝试根据将所述节点作为其目标的链接中的来设置节点半径大小。

例如,节点 B 的大小应根据值 276(以节点 B 作为目标的链接)。

这是我使用的:

var nodeElements = g.append("g") 
.attr("class", "nodes")
.selectAll("circle")
.data(nodes)
.enter().append("circle")
.attr("r", function(node,link){
var radius = 12;
if (node.level == 0) radius = radius * 2; // Setting up the main node as bigger than others

node.weight = link.filter(function(link) {
if (link.target.index == node.index){
var linkValue = link.value;
if (linkValue > 500) ? (radius = 12) : (radius = 6);
}
});

return radius;
})
.attr("fill", getNodeColor)
.attr("stroke", "#fff")
.attr('stroke-width', 2)
.on('mouseover', selectNode)

但这似乎不起作用。说它无法识别 link.filter,类似 I've taken from here 。我正在使用 d3.js v4。

尝试寻找线索,但仍然没有得到任何提示。有什么想法吗?

最佳答案

有几件事需要更改,但首先您应该了解您不会自动将链接添加到节点的数据。

所以过滤语句的目的似乎是根据索引找到该数组中相应的链接。没有 link 变量传递到外部函数,但您应该在上面定义的 links 数组中搜索具有节点 ID 的目标的链接。

如果您只需要一个链接,而不是全部链接,请使用 Array.prototype.find 。但 filterfind 的工作方式相同 - 对数组中的每个项目调用定义的匿名函数。 find 在第一个找到的对象处停止,而 filter 返回所有匹配项。

.attr("r", function(dat, index, n) {
var linkItem = links.find(function(link) {
return link.target == dat.id;
});
var radius = 12;
// linkItem would be undefined if the item was not found in the links
if (linkItem && linkItem.value > 500) {
radius = 12;
} else {
radius = 6;
}

// you should double the radius towards the end,
// so that radius doesn't get overwritten
if (dat.level === 0) {
radius = 2 * radius;
}

return radius;
})

关于javascript - d3.js 力定向图 : How to make node size depends on the value of the links?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47338157/

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