是否有可能像在“加载”和“完成”中一样在“渲染”函数中调用“缩放”事件。在下面的功能中,即使我放大图表,我也可以接收警报“图表已完成!”,但永远不会“缩放”:
$scope.myRender = {
id: $scope.idZingchart,
data : $scope.myJson,
events : {
complete : function(p) {
alert("Chart is finished!");
},
zoom : function (e) {
var test = $scope.currentIndexTab;
alert('ZOOMING');
}
}
}