D3.js Donut过渡

时间:2015-04-15 13:40:53

标签: d3.js transition updates donut-chart

我正在研究d3甜甜圈,如果您将值从42更改为17,我将坚持如何更新值将返回的甜甜圈值。 我可以删除svg,但是它会从零位置重写新值(17)。

我希望它从42说到17回。

var path = svg.selectAll("path")
        .data(pie(dataset.lower))
        .enter().append("path")
        .attr("class", function(d, i) { return "color" + i })
        .attr("d", arc)
        .each(function(d) { this._current = d; }); // store the initial values

这是我的jsfidle http://jsfiddle.net/yr595n96/

的链接

我很乐意为您提供任何帮助。

由于

1 个答案:

答案 0 :(得分:1)

你是新按钮点击:

$("#next").click(function () {
    percent = 17;
    var progress = 0;
    var timeout = setTimeout(function () {
        clearTimeout(timeout);
        var randNumber = Math.random() * (100 - 0 + 1) + 0;
        //path = path.data(pie(calcPercent(17))); // update the data << change this
        path = path.data(pie(calcPercent(randNumber)));
        path.transition().duration(duration).attrTween("d", function (a) {
            // 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.
            var i  = d3.interpolate(this._current, a);
            var i2 = d3.interpolate(progress, randNumber)
            this._current = i(0);
            return function(t) {
                text.text( format(i2(t) / 100) );
                return arc(i(t));
            };
        }); // redraw the arcs
    }, 100);
});

第8行注意:

path = path.data(pie(calcPercent(randNumber)));

您需要传递新数据才能转换为。我在这里使用了一个随机数,只是为了向你显示任何数字。我为此创建了一个变量并将其传递给'path'和文本:'i2'&gt; d3.interpolate。

您可以随时将其更改为17以满足您的要求:)

更新了小提琴:http://jsfiddle.net/yr595n96/3/