angular nvd3持续时间不影响饼图
angular nvd3 duration not affect pie chart
我想在 selecting/unselecting 项目更长时产生 transition/animation 效果,我正在尝试将 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
}
};
这看起来像是 nvd3 中的错误。
https://github.com/novus/nvd3/issues/1474#issuecomment-178333163
angular-nvd3 是 nvd3 的包装器。
我想在 selecting/unselecting 项目更长时产生 transition/animation 效果,我正在尝试将 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
}
};
这看起来像是 nvd3 中的错误。
https://github.com/novus/nvd3/issues/1474#issuecomment-178333163
angular-nvd3 是 nvd3 的包装器。