此d3代码是否正确?
.attr("text-anchor", "right")
可能的值,只有开始,中间,结束? https://developer.mozilla.org/en/docs/Web/SVG/Attribute/text-anchor
你的意思是对,d3自己的规格?
答案 0 :(得分:0)
你是对的。文件显示只有三个属性开始,中间和结束。您可以再次选择更改文本的方向或位置。
1)
.style("text-anchor","mid") // you can change to start, end
.attr("startOffset","50%") //you can change the percentage of offset
.text("Your Text");
2)样式中有一个属性“Text Direction”
.style("direction","rtl") //where rtl stands for right to left
希望这是你正在寻找的。 p>