公平警告:我是这里的D3新秀。我使用D3构建圆环图,所有这些都很好,除了切片上的标签不与切片对齐。使用下面的代码,每个切片的标签都会在图表的中间呈现,堆叠在一起,使它们无法读取。我在我的变换属性中删除了arc.centroid,但它已经返回" NaN,NaN"而不是实际的坐标,我无法理解它从哪里读取它没有找到一个数字。我的innerRadius和outerRadius在arc变量中定义。有什么帮助吗?
(原谅我没有jsfiddle,但我在这里从.csv中提取数据)
var width = 300,
height = 300,
radius = Math.min(width, height) / 2;
var color = ["#f68b1f", "#39b54a", "#2772b2"];
var pie = d3.layout.pie()
.value(function(d) { return d.taskforce1; })
.sort(null);
var arc = d3.svg.arc()
.innerRadius(radius - 85)
.outerRadius(radius);
var svg = d3.select("#pieplate").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");
d3.csv("data.csv", type, function(error, data) {
var path = svg.datum(data).selectAll("path")
.data(pie)
.enter().append("path")
.attr("fill", function(d, i) { return color[i]; })
.attr("d", arc)
.each(function(d) { this._current = d; }); // store the initial angles
var text = svg.selectAll("text")
.data(data)
.enter()
.append("text")
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
.attr("dy", ".35em")
.attr("text-anchor", "middle")
.text( function (d) { return d.taskforce1; })
.attr("font-family", "sans-serif")
.attr("font-size", "20px")
.attr("fill", "black");
d3.selectAll("a")
.on("click", switcher);
function switcher() {
var value = this.id;
var j = value + 1;
pie.value(function(d) { return d[value]; }); // change the value function
path = path.data(pie); // compute the new angles
path.transition().duration(750).attrTween("d", arcTween); // redraw the arcs
textLabels = text.text( function (d) { return d[value]; });
}
});
function type(d) {
d.taskforce1 = +d.taskforce1;
d.taskforce2 = +d.taskforce2;
d.taskforce3 = +d.taskforce3;
return d;
}
// Store the displayed angles in _current.
// Then, interpolate from _current to the new angles.
// During the transition, _current is updated in-place by d3.interpolate.
function arcTween(a) {
var i = d3.interpolate(this._current, a);
this._current = i(0);
return function(t) {
return arc(i(t));
};
}
答案 0 :(得分:4)
终于明白了。 arc.centroid函数需要具有预计算的startAngle和endAngle的数据,这是pie(数据)的结果。以下帮助我:
var text = svg.selectAll("text")
.data(pie(data))
然后是其余的电话。请注意,您可能必须更改访问要显示的文本数据的方式。您可以随时查看
// while adding the text elements
.text(function(d){ console.log(d); return d.data.textAttribute })