我需要做类似的事情:
paper.text(Left, Top, " " + this._p.Label + ":");
paper.text(Left, Top, " " + this._p.Label + ":");
但是前面的空格不会像
文本一样显示或显示。
我试过了:
label.attr({"xml:space": "preserve"});
...没有效果。
无论如何可以访问 Raphael JS 中的 SVG 节点,以便我可以设置
setAttributeNS("http://www.w3.org/XML/1998/namespace","space","preserve");
(或者有没有其他方法可以解决这个问题?)