Google.Visualization.Dashboard是否与开箱即用的图表动画一起使用?在下面的代码中,我将 a 绑定CategoryFilter
到 anAreaChart
并指定了动画选项 - 仪表板工作正常,但在数据更改时没有动画(通过控件选择新值)。如果我遗漏了什么,请告诉我,谷歌教程不包括仪表板或 ChartWrapper方法(我正在使用)。
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
}
}
});