D3 js bbox在v7中未形成



我试图在d3 js中创建一个bbox,这样它就可以封装我的文本,但它似乎没有形成。

function jobsCreation()
{
let enteringText = dataJobs
.enter()
.append("text")
.attr("x",function(d){return d.posX})
.attr("y",function(d){return d.posY})
.text(function(d){return d.name});
let bbox = text.nodes().getBBox();
let rect = svg.append("rect")
.attr("x", bbox.x)
.attr("y", bbox.y)
.attr("width".bbox.width)
.attr("height",bbox.height)
.style("fill","#ccc")
.style("stroke", "black")
.style("stroke-width", "1.5px");
}

对不起,伙计们,我没有得到适当的数据,他们是我的代码的一些问题,我现在得到它的工作。

固定代码:

function jobsCreation(){
let enteringText = dataJobs
.enter()
.append("text")
.attr("x",function(d){return d.posX})
.attr("y",function(d){return d.posY})
.text(function(d){return d.name});
let bbox = enteringText.node().getBBox();
let rect = svg.append("rect")
.attr("x", bbox.x)
.attr("y", bbox.y)
.attr("width",bbox.width)
.attr("height",bbox.height)
.style("fill","white")
.style("stroke", "black")
.style("stroke-width", "1.5px");
}

相关内容

  • 没有找到相关文章

最新更新