angular nvd3持续时间不会影响饼图

时间:2015-12-23 13:14:52

标签: angularjs d3.js nvd3.js angularjs-nvd3-directives angular-nvd3

我想在更长时间选择/取消选择项目时进行过渡/动画效果,我试图将nvd3饼图的持续时间参数设置为长达10秒(或10000毫秒)但它没有对饼图的影响,

我尝试更改持续时间值,我还尝试添加transitionDuration属性

$scope.options = {
            chart: {
                type: 'pieChart',
                height: 500,
                x: function(d){return d.key;},
                y: function(d){return d.y;},
                showLabels: true,
                duration: 10000,
                transitionDuration: 10000
            }
        };

您可以看到以下示例:http://plnkr.co/edit/vtKWU0?p=preview

1 个答案:

答案 0 :(得分:1)

它看起来像是nvd3中的一个错误。

https://github.com/novus/nvd3/issues/1474#issuecomment-178333163

angular-nvd3是nvd3的包装。