我正在编写 d3.js 来生成许多图表和图形。但是当没有数据时,我只是在 svg 后面附加一个文本并写“没有数据要显示”并分配一些属性,如 xy dy 等。类似的字体大小但除了字体大小,一切正常。
为什么?这是我的代码
var svg = d3.select(selector).append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
if (!data.IssueTrendsDAO.issueTrendList) {
svg.append("text")
.attr("font-size","34px")
.attr("y", 79)
.attr("x", 40)
.attr("dy", ".47em")
.style("text-anchor", "start")
.style("fill", "#004669")
.style("font-weight", "bold")
.text("No data to display");
}