如何将外部SVG插入到使用d3绘制的SVG中?

时间:2014-05-18 18:39:07

标签: svg d3.js

如何将外部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"

0 个答案:

没有答案