在div HTML中定位多个SVG元素

时间:2015-04-18 15:47:38

标签: javascript html svg d3.js position

我有2个图表,如下所示:

enter image description here

我需要在条形图旁边显示标签云。我使用D3显示这些图表,我的HTML部门看起来像这样(svg1显示条形图,svg2显示标签 - 云):

enter image description here

我将不胜感激任何帮助。这是DEMO。在演示中,我希望圆圈显示在条形图旁边。

谢谢!

1 个答案:

答案 0 :(得分:1)

为什么不在your demo

上浮动像这里的元素
d3.select("body").append("div")
    .attr("id","area1")
    .style("width", 500)
    .style("float","left");

function wordCloud(){
    var wC = {};

    d3.select("body")
    .append("svg")
    .style("float","left")
    .attr("width", 50)
    .attr("height", 50).append("circle").attr("cx", 25).attr("cy", 25).attr("r", 25).style("fill", "purple");
    return wC;
}