i have 4 arrays with dynamic data. I want do make vertical table. Now i have this:
My code:
<table class="table table-striped">
<tbody>
<tr >
<td ng-repeat="x in daneDoWykresuX">{{ x }}</td>
</tr>
<tr>
<td ng-repeat="x in metodaPrzyblizona">{{ x }}</td>
</tr>
<tr>
<td ng-repeat="x in metodaDokladna">{{ x }}</td>
</tr>
<tr>
<td ng-repeat="x in metodaRK">{{ x }}</td>
</tr>
</tbody>
</table>
Can someone tell me how can i make multiple ng-repeat in row, or how can i do this?
