为了补充斯科特的答案,与 em (字体大小单位)一起使用的 dy 对于相对于绝对 y 坐标垂直对齐文本非常有用。这在MDN dy 文本元素示例中有所介绍。
使用 dy=0.35em 可以帮助垂直居中文本,而不管字体大小。如果您想围绕绝对坐标描述的点旋转文本的中心,这也很有帮助。
<style>
text { fill: black; text-anchor: middle; }
line { stroke-width: 1; stroke: lightgray; }
</style>
<script>
dataset = d3.range(50,500,50);
svg = d3.select("body").append("svg");
svg.attr('width',500).attr('height', 500);
svg.append("line").attr('x1', 0).attr('x2', 500).attr('y1', 100).attr('y2', 100);
svg.append("line").attr('x1', 0).attr('x2', 500).attr('y1', 200).attr('y2', 200);
group = svg.selectAll("g")
.data(dataset)
.enter()
.append("g");
// Without the dy=0.35em offset
group.append("text")
.text("My text")
.attr("x",function (d) {return d;})
.attr("y",100)
.attr("transform", function(d, i) {return "rotate("+45*i+","+d+",100)";});
// With the dy=0.35em offset
group.append("text")
.text("My text")
.attr("x",function (d) {return d;})
.attr("y",200)
.attr("dy","0.35em")
.attr("transform", function(d, i) {return "rotate("+45*i+","+d+",200)";});
<script>
在 Codepen 中查看
如果您不包含“dy=0.35em”,则文字将围绕文本底部旋转,并在 180 之后对齐到旋转之前的位置下方。包括 "dy=0.35em" 会使它们围绕文本的中心旋转。
请注意,无法使用 CSS 设置 dy。