使用d3.js的Sankey图 - 添加链接标题的信息

时间:2017-10-24 07:01:42

标签: javascript html d3.js sankey-diagram

我正在尝试实施这个sankey示例:http://bl.ocks.org/d3noob/c9b90689c1438f57d649

它使用CSV文件输入数据:

  

来源 - 目标 - 价值

链接标题显示为:enter image description here

我想在数据输入中添加另一个字段:

  

来源 - 目标 - 价值 - 信息

应将以下内容添加到链接标题中: enter image description here

您是否看到了添加此信息的方法?我尝试过改变:

<!-- language: lang-js -->

// load the data (using the timelyportfolio csv method)
d3.csv("sankey.csv", function(error, data) {

//set up graph in same style as original example but empty
graph = {"nodes" : [], "links" : []};

data.forEach(function (d) {
  graph.nodes.push({ "name": d.source });
  graph.nodes.push({ "name": d.target });
  graph.links.push({ "source": d.source,
                     "target": d.target,
                     "value": +d.value,
                     **"information": +d.information**} });
 });

// add the link titles
link.append("title")
    .text(function(d) {
        return d.source.name + " → " + 
            d.target.name + "\n" + format(d.value) + **d.information**; });

遗憾的是,这不起作用。

1 个答案:

答案 0 :(得分:3)

您没有完全告诉我们 它是如何工作的。所以,我猜这个问题是使用字符串的一元加运算符...如果我的假设是正确的,你可能会在标题中看到NaN

无论如何,这些是以下步骤:

首先,在CSV中添加字段:

source,target,value,info
Barry,Elvis,2,foo
Frodo,Elvis,2,bar
Frodo,Sarah,2,baz
Barry,Alice,2,foobar
Elvis,Sarah,2,foobaz
Elvis,Alice,2,barbar
Sarah,Alice,4,barbaz

然后,在链接中推送该属性,不带一元加号:

data.forEach(function(d) {
    graph.nodes.push({
        "name": d.source
    });
    graph.nodes.push({
        "name": d.target
    });
    graph.links.push({
        "source": d.source,
        "target": d.target,
        "value": +d.value,
        "information": d.info
    });
});

最后,获取标题中的属性:

link.append("title")
    .text(function(d) {
        return d.source.name + " → " +
            d.target.name + "\n" + format(d.value) + ", Information: " + d.information
    });

以下是更新的bl.ocks:http://bl.ocks.org/anonymous/5652b4a53cd73f0b3a493b400ec4e1b3/2cdf75a83dc79946722f975144c0ce892836a15a