如何将外部SVG插入使用d3绘制的SVG中?我不是试图利用外部SVG,我试图将其插入到我用d3生成的SVG中。
我做了以下事情:
var root = d3.select('#svg')
.append("svg:svg")
.attr("width", width)
.attr("height", height);
d3.xml("foo.svg", 'image/svg+xml', function(xml) {
root.append(xml.documentElement);
});
但我一直在"未捕获TypeError:undefined不是函数d3.js:559"