我想为文本元素添加背景色。我意识到我无法使用CSS样式设置背景颜色,因为这是SVG文本,因此我尝试附加矩形但成功了:
let g = svg.selectAll("g")
.data(["1 year", "2 years", "3 years", "4 years", "5 years"])
.enter()
.append("g")
.attr("transform", "translate(" + (markerCirclesScale(name) + 330) + "," + (fullSVGHeight / 2 - 60) + ")" );
g.append("text")
.attr("text-anchor", "middle")
.style("font-size", 10)
.style("fill", "black")
.attr("y", function(d,i){
return i * (-65);
})
.text(function(d){
return d;
})
g.append("rect")
.attr("x", function(d){ return this.parentNode.getBBox().x - 10;})
.attr("y", function(d, i){ return this.parentNode.getBBox().y })
.attr("width", function(d){ return this.parentNode.getBBox().width + 20;})
.attr("height", function(d) {return 40;})
.style("fill", "#80d6c7");
但是我意识到在DOM中更改顺序并不能解决问题,为什么通过更改代码顺序却不起作用?!