gpt4 book ai didi

javascript - 如何在过渡中移动文本标签

转载 作者:行者123 更新时间:2023-11-29 18:24:19 24 4
gpt4 key购买 nike

我是 D3 的新手,我正在尝试扩展 http://bl.ocks.org/mbostock/4063423 中的朝阳示例只需向每个弧添加文本标签。对于静态图表来说很容易,并且在此代码标签中位置正确,但是当我添加一个转换时,与示例中相同,调整弧的大小,文本标签不会移动。

<script type="text/javascript">

function onload() {
var container = document.querySelector("#graph");
var width = $(container).width(),
height = 700,
radius = Math.min(width, height) / 2,
color = d3.scale.category20c();

var svg = d3.select("#graph").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + width / 2 + "," + height * .52 + ")");

var partition = d3.layout.partition()
.sort(null)
//.size([2 * Math.PI, radius * radius])
.size([2 * Math.PI, 100000])
// criteri per defecte: Importància
.value(function(d) { return d.size; });

var arc = d3.svg.arc()
.startAngle(function(d) { return d.x; })
.endAngle(function(d) { return d.x + d.dx; })
.innerRadius(function(d) { return Math.sqrt(d.y); })
.outerRadius(function(d) { return Math.sqrt(d.y + d.dy); });

d3.json("data/CV.json", function(error, root) {
var arcs = svg.datum(root).selectAll("path")
.data(partition.nodes)
.enter().append('svg:g');

var path = arcs.append("path")
.attr("display", function(d) { return d.depth ? null : "none"; }) // hide inner ring
.attr("d", arc)
.style("stroke", "#fff")
.style("fill", function(d) { return color((d.children ? d : d.parent).name); })
.style("fill-rule", "evenodd")
.each(stash);

var label = arcs.append("svg:text")
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
.attr("dy", ".35em")
.attr("text-anchor", "middle")
.attr("class", "label")
.attr("style", function(d) { return d.depth ? null : "display: none"; }) // hide inner
.text(function(d) { return d.name; });

d3.selectAll("input").on("change", function change() {
var value = this.value === "count"
? function() { return 1; }
: function(d) { return d.size; };

path
.data(partition.value(value).nodes)
.transition()
.duration(1500)
.attrTween("d", arcTween);

});
});

// Stash the old values for transition.
function stash(d) {
d.x0 = d.x;
d.dx0 = d.dx;
}

// Interpolate the arcs in data space.
function arcTween(a) {
var i = d3.interpolate({x: a.x0, dx: a.dx0}, a);
return function(t) {
var b = i(t);
a.x0 = b.x;
a.dx0 = b.dx;
return arc(b);
};
}

d3.select(self.frameElement).style("height", height + "px");
}

</script>

如何实现标签的移动,只需要按照相应的圆弧移动?

问候,琼

最佳答案

在尝试了几件事之后,我发现在功能更改中也需要更新标签,只需添加此调用即可解决问题:

label
.data(partition.value(value).nodes)
.transition()
.duration(1500)
.attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; })
});

现在可以了。

关于javascript - 如何在过渡中移动文本标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15051329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com