Google Chart - Animate无效

the*_*mqe 3 google-visualization

我正在使用谷歌图表,但我希望它与动画..和动画不工作有什么不对的是我的代码

google.load('visualization', '1', {
    packages: ['corechart']
});
google.setOnLoadCallback(drawChart);

function drawChart() {
    var data = google.visualization.arrayToDataTable([
        ['Y?l', 'Toplam Sat?? Miktar? (Ton)'],
        ['2007', 153888],
        ['2008', 37634],
        ['2009', 21835],
        ['2010', 80929],
        ['2011', 137699],
        ['2012', 313837],
        ['2013', 1050000], ]);

    var options = {
        title: 'Ciro',
        'width': 850,
        animation: {
            duration: 1000,
            easing: 'out'
        },
        'height': 400,
        hAxis: {
            title: 'Y?l',
            titleTextStyle: {
                color: 'red'
            }
        }
    };

    var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
    chart.draw(data, options);
}
Run Code Online (Sandbox Code Playgroud)

Sam*_*hen 6

新版本支持启动动画

animation: {
   startup:true,
   duration: 1000,
   easing: 'out'
}
Run Code Online (Sandbox Code Playgroud)