我正在尝试创建部分填充的圈子,就像最后的NYT政治会议可视化中的圈子一样:http://www.nytimes.com/interactive/2012/09/06/us/politics/convention-word-counts.html
我在d3(https://gist.github.com/1067636和http://bl.ocks.org/3422480)中为clipPaths找到的两个最清晰的代码示例为每个剪辑路径创建了具有唯一ID的各个div元素,然后将这些路径应用于单个元素。
我无法弄清楚如何从这些示例转换为基于数据值的一组元素中每个元素具有唯一圆形clipPath的可视化,以便我可以创建我的效果。
以下是目前:
的内容给出具有以下结构的数据:
data = [
{value: 500, pctFull: 0.20, name: "20%"},
{value: 250, pctFull: 0.75, name: "75%"},
{value: 700, pctFull: 0.50, name: "50%"},
]
1)为数据集中的每个对象创建一个带圆的力图。圆的面积来自对象值。
2)使用mbostock示例http://bl.ocks.org/3422480
中的算法,从每个数据点的比例(pctFull)计算k(和h)3)使用k为每个覆盖圆的适当区域的数据点生成一个矩形。
我认为如果我可以将每个矩形的可见度限制在各自的圆圈,我就会完成插图,但这就是我被困住的地方。我尝试过很多东西,但都没有。
这是jsfilddle:http://jsfiddle.net/G8YxU/2/
答案 0 :(得分:7)
在这里查看一个工作小提琴:http://jsfiddle.net/nrabinowitz/79yry/
// blue circle
node.append("circle")
.attr("r", function(d, i) {return rVals[i];})
.style("fill", "#80dabe")
.style("stroke", "#1a4876");
// clip path for the brown circle
node.append("clipPath")
// make an id unique to this node
.attr('id', function(d) { return "clip" + d.index })
// use the rectangle to specify the clip path itself
.append('rect')
.attr("x", function(d, i){ return rVals[i] * (-1);})
.attr("width", function(d, i){ return rVals[i] * 2;})
.attr("y", function(d, i) {return rVals[i] - (2 * rVals[i] * kVals[i]);})
.attr("height", function(d, i) {return 2 * rVals[i] * kVals[i];});
// brown circle
node.append("circle")
// clip with the node-specific clip path
.attr("clip-path", function(d) { return "url(#clip" + d.index + ")"})
.attr("r", function(d, i) {return rVals[i];})
.style("fill", "#dabe80")
.style("stroke", "#1a4876");
看起来为元素指定剪辑路径的唯一方法是在url(IRI)
属性中使用clip-path
表示法,这意味着您需要一个唯一的ID每个剪辑路径基于节点数据。我已经使用clip<node index>
形式作为id - 所以每个节点都有自己的剪辑路径,节点的其他子元素可以引用它。
按照Mike的例子,最简单的做法是制作两个不同颜色的圆圈,并将矩形本身用于剪辑路径,而不是制作基于圆的剪辑路径。但你可以这样做。