在D3折线图中添加数据标签(适用于Power BI)

时间:2015-10-26 14:20:37

标签: d3.js powerbi

可以找到整个源代码here

要求:我需要将数据标签添加到折线图(也就是上面的圆圈)

尝试:添加

selectionCircle.append("text")
                    .attr(function (d) { return d.x; })
                    .attr(function (d) { return d.y; })

在线下

var selectionCircle = this.sMainGroupElement2.selectAll("circle").data(dataPoints, function (d) { return d.dataId; });

尝试在原始代码中的不同位置添加我的代码但不起作用。

2 个答案:

答案 0 :(得分:2)

尝试在现有的“selectionCircle.exit()。remove();”下添加以下代码。行:

this.sMainGroupElement2.selectAll("text").remove();
var selectionLabel = this.sMainGroupElement2.selectAll("circleLabel").data(dataPoints, function (d) { return d.dataId; });
selectionLabel.enter()
    .append("text")
    .classed(".circleLabel", true)
    .text(function(d) { return d.ActualOrg; })
    .attr("x", function (d) { return d.x; })
    .attr("y", function (d) { return d.y-sH*0.05; })
    .attr("fill", "#bebebe")
    .attr("style", "font-family:calibri;font-size:" + sL * 0.04 + "px")
    .attr("text-anchor", "middle")                    
selectionLabel.exit().remove();

删除(它们应该更新)所有元素(例如第一行)都不是最好的实践,但它会让你开始。

答案 1 :(得分:0)

我对Power BI并不是很了解,但在d3.js中你只需在enter语句中附加文本节点,就像你附加圆圈一样。

所以它看起来像这样:

selectionCircle.enter()
    .append("circle")
        .classed(".circle112", true)
        .attr("cx", function (d) { return d.x; })
        .attr("cy", function (d) { return d.y; })
        .attr("r", sH * 0.02)
        .attr("fill", statusColor)
        .attr("stroke", "white")
        .attr("stroke-width", sH * 0.015)
    .append("text")
        .text('some label text can also be a function') //Change this
        .attr(function (d) { return d.x; })
        .attr(function (d) { return d.y; });

d3的.enter()方法遍历数据,用于根据数据添加新元素。

希望这有帮助。