My List consists of integer array type values, being displayed using *ngFor
:
<div *ngFor="let item of values; let i = index">
<div>
<div *ngFor="let subitem of item;" style="display:block">
<div class="progress">
<div class="progress-bar" id="progress" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" [style.width.%] = "subitem">
{{subitem}}
</div>
</div>
<br>
</div>
</div>
To avoid unnecessary creation of div
elements, I aim to show the list contents within a single div
after a delay, rather than repeated iterations.