我想知道是否有一种方法可以使元素的svg文本向右对齐。它目前正在运行,位于左侧,想知道我是否缺少简单的东西。
svg.append("text")
.attr("class", "role-title")
.text(function (d) {return d.role;})
.call(wrapText, 190)
.attr('transform', function (d) {
if (d.place === 1) {
return 'translate(75,-40)'; ... // parameter for right align
<text class="role-title" transform="translate(-240, 50)">
<tspan x="0" dy="0em">Computer and Information</tspan>
<tspan x="0" dx="0" dy="1.1em">Research Scientist</tspan>
</text>