在Sunburst弧中放置圆圈

时间:2017-03-16 15:46:21

标签: d3.js svg trigonometry

我需要在旭日弧中放置圆圈,在中间或侧面靠近外半径,就像 B单位切片中的模型一样。

请使用此sunburst示例来玩:jsfiddle

    var circles = g.append("circle")
    .attr("cx",
        function(d) {
            return arc.centroid(d)[0];
        })
    .attr("cy",
        function(d) {
            return arc.centroid(d)[1];
        })
    .attr("r", 8)
    .attr("stroke", "black")
    .attr("stroke-width", 2)
    .style("fill", "blue");

enter image description here

0 个答案:

没有答案