In my angular2 application I'm using zingchart to display several charts. In all the examples i saw, this is how they display charts:
<code>
<zingchart *ngFor="let chart of charts" [chart]="chart"></zingchart>
</code>
but what if i want to display each chart separately? i want to put a button between first chart and second chart. how can i do that? i need something like:
<code>
<zingchart [chart]="charts[0]"></zingchart>
</code>
thanks in advance.