i have a directive that injects a high amount of data on a high-chart that iterates using ng-repeat over an object's attributes:
<div class="row animated fadeIn" ng-repeat="datum in controllerData" ng-if="(SizeOf(controllerData) > 0 && !dataInLoad)">....</div>
now.. having this usually injecting at least 5-8 charts, it gets the explorer stuck for about 20-40 seconds.
now i know there are ways to split ng-repeat if iterating over strings or arrays but my app requires that i iterate over this object's attributes (controllerData).
is there a way to control over the ng-repeat such that it will load only a couple of charts every time and only then continue?
thank you