我正在使用angularjs-nvd3-directives
创建一些饼图和堆叠条形图,并且想知道如何更改转换持续时间甚至类型,但持续时间是我主要要调整的时间。
这是我的代码:
<nvd3-multi-bar-horizontal-chart
data="stackedData"
id="stackedExample2"
showvalues="true"
valueformat="valueFormatFunction()"
showlegend="true"
tooltips="true"
showlabels="true"
stacked="true"
color="colourFunction()"
legendcolor="colourFunction()"
showxaxis="true"
showyaxis="true"
x="xFunctionBar()"
showcontrols="false"
interactive="true"
margin="{left:100}"
transitionduration="1000">
<svg></svg>
</nvd3-multi-bar-horizontal-chart>
仅影响图形的transitionduration
初始加载,但是当数据更改并且重新绘制图表时,条形图或饼图转换到新值的速度过快。如果可能,我希望能够减慢速度并更改过渡类型。它目前默认为从左上角到右下角的过渡 - 这对于缓慢的图表加载很好,但过渡看起来很糟糕。
我已经尝试过delay="500"
,但这似乎没有任何作用。我在这里错过了什么吗?