如何在angular highcharts指令中触发重绘?问题是我在一个选项卡中包含了我的图表并且它初始化严重。像这样:http://puu.sh/lVg8s/6d9e9f2083.png
如果我调整窗口大小,它会为选定的选项卡实例修复自身,但我需要以某种方式在加载时执行此操作。
Application.controller('SalesReportsHistoryController', ['ServerActions', '$scope', 'initData', function( ServerActions, $scope, initData ){
var history = this;
history.initData = initData.data;
$scope.$on('$viewContentLoaded', function () {
$(window).resize(function () {
console.log('resized!');
});
$(window).resize();
});
... etc more code
这是我尝试过的,但没有骰子。触发resize事件,如果我在控制台中触发它,它会按照我的预期运行,但不会加载。