2012-09-23 108 views
1

Google.Visualization.Dashboard是否支持圖表動畫開箱即用?在下面的代碼中,我將CategoryFilter綁定到AreaChart並指定了動畫選項 - 儀表板工作正常,但數據更改時沒有動畫(通過控件選擇新值)。請讓我知道,如果我錯過了一些東西,谷歌教程不包括Dashboard nor the ChartWrapper方法(我正在使用)。谷歌Viz儀表板與圖表動畫?

var control1 = new google.visualization.ControlWrapper({ 
     'controlType' : 'CategoryFilter', 
     'containerId' : 'control1', 
     'options' : { 
      'filterColumnLabel' : 'ThisColumn', 
      'ui' : { 
       'labelStacking' : 'vertical', 
       'allowTyping' : false, 
       'allowMultiple' : false 
      } 
     } 
    }); 

var areaChart = new google.visualization.ChartWrapper({ 
    'chartType' : 'AreaChart', 
    'containerId' : 'chart1', 
    'options' : { 
     'animation' : { 
      'duration' : 4000 
     } 
    } 
}); 

回答

0

動畫作品。我不知道你使用了什麼樣的數據,所以我用面積圖設置了一個例子,但是作爲一個控件使用了NumberRangeFilter。

請參閱demo at jsBin