我正在尝试在我的 D3 节点中使用FontAwesome而不是文本设置图标。这是原始实现,带有文本:
g.append('svg:text')
.attr('x', 0)
.attr('y', 4)
.attr('class', 'id')
.text(function(d) { return d.label; });
现在我尝试使用图标:
g.append('svg:i')
.attr('x', 0)
.attr('y', 4)
.attr('class', 'id icon-fixed-width icon-user');
但这不起作用,即使标记是正确的,并且 CSS 规则被正确命中:图标不可见。
知道为什么吗?
这是相关的jsbin
编辑
我找到了插入图像的替代方法:http: //bl.ocks.org/mbostock/950642
node.append("image")
.attr("xlink:href", "https://github.com/favicon.ico")
.attr("x", -8)
.attr("y", -8)
.attr("width", 16)
.attr("height", 16);
这正是我想要做的,但它不适<i>
用于 FontAwesome 使用的元素。