饼图与d34raphael

时间:2012-10-04 18:33:41

标签: svg raphael d3.js vml

我需要绘制一个在IE 8中有效的饼图,所以我正在使用d34raphael。

目前这是我的代码,它是从d3饼图示例https://raw.github.com/mbostock/d3/master/examples/pie/pie.html

修改的
var width = 300,
    height = 300,
outerRadius = Math.min(width, height) / 2,
innerRadius = outerRadius * .6,
data = d3.range(10).map(Math.random),
color = d3.scale.category20(),
donut = d3.layout.pie(),
arc = d3.svg.arc().innerRadius(innerRadius).outerRadius(outerRadius);

// #chart is a div
var paper = new Raphael($('#chart')[0], width, height);
var svg = d3.raphael(paper);

 paper.setStart();

 var vis = svg.selectAll('rect')
.data([data])
.enter().append('rect')
   .attr('x', 0)
   .attr('y', 0)
   .attr('width', width)
   .attr('height', height);

svg.selectAll('path')
    .data(donut)
.enter().append('path')
   .attr('fill', function(d, i) { return color(i); })
   .attr('d', arc)
   .attr('transform', 'translate(' + outerRadius + ',' + outerRadius + ')');

paper.setFinish().transform(['t', 0, 0]);
当我将donut传递给数据函数时,它会崩溃,d3的数据函数中的bind函数有一个group参数。在单步执行数据功能后,我发现group未定义。 (对我来说,它在d3.v2.js:4997 bind(group = this[i], value.call(group, group.parentNode.__data__, i));崩溃,它试图在未定义的parentNode上引用group我认为这可能与raphael不支持g有关标签。关于如何在d34raphael中使用d3 pie布局的任何想法?感谢

0 个答案:

没有答案