如何动画饼图jqplot?

时间:2016-11-21 19:12:11

标签: javascript jquery html

我使用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
           }
    });
});

如何动画在圆圈上打开此图表?

0 个答案:

没有答案