我使用jqplot并制作一个饼图。 我怎么能动画呢? 我的代码:
$(document).ready(function () {
jQuery.jqplot.config.enablePlugins = true;
plot = jQuery.jqplot('chart', [
[
['a', 32.1],
['b', 17.0]
]
], {
seriesColors: ["#ff0070", "#00557d"],
seriesDefaults: {
shadow: false,
renderer: jQuery.jqplot.PieRenderer,
rendererOptions: {
fill: false,
sliceMargin: 10,
showDataLabels: true,
startAngle: 120,
dataLabelThreshold: 5,
dataLabelPositionFactor: 0.6
}
},
legend: {
show: true
}
});
});
如何动画在圆圈上打开此图表?