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
}
}
});