//build legend key
var svgContainer = d3.select("#TMLegend").append("svg")
.attr("width", 972)
.attr("height", 30);
var width = 35, height = 10, x = 0;
for(var e =0; e < root.children.length; e++){
svgContainer
.append("rect")
.attr("x", 0)
.attr("y", 10)
.attr("width", width)
.attr("height", height)
.attr("transform", "translate("+(36*x++)+",0)")
.style("fill", function(){
return colorArr[root.children[e].name];
})
.attr("title", function(){
return root.children[e].name;
})
.text(function(){
return root.children[e].name;
});
}
d3.selectAll("#TMLegend rect").on("mouseover",function () {
var title = d3.select(this).text();
$("#TMLegendPopUp").show().html("<h4>"+title+"</h4>");
//Popoup position
$(document).mousemove(function(e){
var popLeft = e.pageX + 10;
var popTop = e.pageY + -90;
$("#TMLegendPopUp").css({"left":popLeft,"top":popTop});
$("#TMLegendPopUp h4").css({"background": colorArr[title], "margin":0});
});
});
上面的代码是我尝试以 id 为 TMLegend 的 div 为目标,并尝试深入到 svg:rect.attr('id') 以获取 rect 元素 id 的内容。从那时起,我已经消除了放置 ID Attr() 并且现在以 text() 为目标。此代码在矩形节点被硬编码时有效,但在我使用 D3 生成它们时无效。有没有人有办法用 D3 动态获取 rect 元素的文本?
硬编码的 html 如下所示:
<div id="TMLegend">
<svg width="972" height="30">
农产品 宝石和金属 矿物产品 建筑材料 纺织品 非常感谢。