D3.js传奇标签

时间:2013-06-18 13:17:45

标签: jquery d3.js legend

我有一个饼图,带有一个传说,是我在D3.js制作的。 PHP文件解析JSON,然后该数据用于填充图表。一切都按我想要的方式工作,除了我不能让传奇标签与正确的颜色相匹配。这是我的代码

var w = 490,
h = 400,
r = 180,
inner = 70,
color = d3.scale.category20c();

d3.json("script.php", function (data) {
    var max = d3.max(data, function(d) { return d.value; });
    var sum = d3.sum(data, function(d) { return d.value; });

    var vis = d3.select("#chart")
        .append("svg:svg")
        .data([data])
        .attr("width", w)
        .attr("height", h)
        .append("svg:g")
        .attr("transform", "translate(" + r * 1.5 + "," + (r + 10) + ")")

    var arc = d3.svg.arc()
        .innerRadius(inner)
        .outerRadius(r);

    var arcOver = d3.svg.arc()
        .innerRadius(inner + 5)
        .outerRadius(r + 5);

    var arcLine = d3.svg.arc()
        .innerRadius(inner)
        .outerRadius(inner + 5);

    var pie = d3.layout.pie()
        .value(function(d) { return d.value; });

    var textTop = vis.append("text")
        .attr("dy", ".35em")
        .style("text-anchor", "middle")
        .attr("class", "textTop")
        .text( "TOTAL" )
        .attr("y", -10),
    textBottom = vis.append("text")
        .attr("dy", ".35em")
        .style("text-anchor", "middle")
        .attr("class", "textBottom")
        .text(sum.toFixed(2) + "m")
        .attr("y", 10);

    var arcs = vis.selectAll("g.slice")
        .data(pie)
        .enter()
            .append("svg:g")
            .attr("class", "slice")
            .on("mouseover", function(d) {
                d3.select(this).select("path").transition()
                    .duration(100)
                    .attr("d", arcOver)

                textTop.text( d3.select(this).datum().data.label )
                textBottom.text( d3.select(this).datum().data.value.toFixed(2) + "m")
            })
            .on("mouseout", function(d) {
                d3.select(this).select("path").transition()
                    .duration(100)
                    .attr("d", arc);

                textTop.text( "TOTAL" )
                textBottom.text(sum.toFixed(2) + "m");
            });

    arcs.append("svg:path")
            .attr("fill", function(d, i) { return color(i); } )
            .attr("d", arc);

    var legend = d3.select("#chart").append("svg")
        .attr("class", "legend")
        .attr("width", 100)
        .attr("height", 350)
        .selectAll("g")
        .data(color.domain().slice().reverse())
        .enter().append("g")
        .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; })

    legend.append("rect")
        .attr("width", 18)
        .attr("height", 18)
        .style("fill", color);

    legend.append("text")
        .attr("x", 24)
        .attr("y", 9)
        .attr("dy", ".35em")
        .text(function(d) { return d; });
})

JSFIDDLE

我认为我将问题缩小到.text(function(d) { return d; });。现在,我假设它返回索引号。如果我将此行更改为.text(function(d, i) { return data[i].label; });,则标签与颜色不匹配。我从here得到了这个传说。我也看过其他例子(因为我的声誉不够高,我无法将它们联系起来),而且我无法正确整合它们。

有人可以帮我弄清楚出了什么问题吗?谢谢!

1 个答案:

答案 0 :(得分:13)

要获得正确的标签,请将用于饼图的相同数据传递到图例:

var legend = d3.select("#chart").append("svg")
  .attr("class", "legend")
  .attr("width", r)
  .attr("height", r * 2)
  .selectAll("g")
  .data(data)
  .enter().append("g")
  .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });

legend.append("rect")
  .attr("width", 18)
  .attr("height", 18)
  .style("fill", function(d, i) { return color(i); });

legend.append("text")
  .attr("x", 24)
  .attr("y", 9)
  .attr("dy", ".35em")
  .text(function(d) { return d.label; });

Jsfiddle here