I have an ng-repeat that is populated with the data from the back end .
<div ng-repeat = "data in Helper.data" class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="easy-pie-chart txt-color-orangeDark" data-percent="33" data-pie-size="50">
<span class="percent percent-sign">{{((data.doc_count/data.size)*100)|number:0}}</span>
</div>
<span class="easy-pie-title"> @{{data.key|uppercase}} <i class="fa fa-caret-up icon-color-bad"></i> </span>
<ul class="smaller-stat hidden-sm pull-right">
<li>
<span class="label bg-color-greenLight"><i class="fa fa-caret-up"></i> {{((data.doc_count/data.size)*100)|number:0}}%</span>
</li>
<li>
<span class="label bg-color-blueLight"><i class="fa fa-caret-down"></i> 44%</span>
</li>
</ul>
<div class="sparkline txt-color-greenLight hidden-sm hidden-md pull-right" data-sparkline-type="line" data-sparkline-height="33px" data-sparkline-width="70px" data-fill-color="transparent">
130, 187, 250, 257, 200, 210, 300, 270, 363, 247, 270, 363, 247
</div>
</div>
In the above code , we have the easyPieChart directive (should be a wrapper Easy Pie Chart , I got it with a template ) which should show the Pie chart once the ng-repeat completes . But for some reason , it's not working as expected . May be the easyPieChart directive is compiled before the ng-repeat completes . How do I solve this ??
Please Help