我有一个包含如下元素的 json 文件:
[{
"name": "Manuel Jose",
"ttags": ["vivant", "designer", "artista", "empreendedor"]
}]
我正在尝试使用此结构获取节点和边以完成如下图:
(图表取自d3.js 文档)
name
和在我的 json 文件中都ttags
引用节点,ttags
实际上是节点和另一个节点之间的链接。
但是,我无法理解如何使用这个库 d3 及以上的 json 文件来创建这个图表。
d3.json("/data/tedxufrj.json", function(classes) {
var nodes = cluster.nodes(package.root(classes)),
links = package.imports(nodes);
vis.selectAll("path.link")
.data(splines = bundle(links))
.enter().append("path")
.attr("class", "link")
.attr("d", line);
vis.selectAll("g.node")
.data(nodes.filter(function(n) { return !n.children; }))
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")"; })
.append("text")
.attr("dx", function(d) { return d.x < 180 ? 8 : -8; })
.attr("dy", ".31em")
.attr("text-anchor", function(d) { return d.x < 180 ? "start" : "end"; })
.attr("transform", function(d) { return d.x < 180 ? null : "rotate(180)"; })
.text(function(d) { return d.key; });
});
这是文件 package.js:
(function() {
packages = {
// Lazily construct the package hierarchy from class names.
root: function(classes) {
var map = {};
function find(name, data) {
var 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 map[""];
},
// Return a list of imports for the given array of nodes.
imports: function(nodes) {
var map = {},
imports = [];
// Compute a map from name to node.
nodes.forEach(function(d) {
map[d.name] = d;
});
// For each import, construct a link from the source to target node.
nodes.forEach(function(d) {
if (d.imports) d.imports.forEach(function(i) {
imports.push({source: map[d.name], target: map[i]});
});
});
return imports;
}
};
})();