Looking to create a sliding carousel layout for displaying a bunch of data with 8 points per slide. The desired structure is as follows:
Slide
datapoint 1
datapoint 2
datapoint 3
datapoint 4
datapoint 5
datapoint 6
datapoint 7
Slide
datapoint 8
datapoint 9
datapoint 10
datapoint 11
and so on...
While familiar with using ng-repeat to iterate over the data points, not sure how to group them accordingly.
Currently implementing
ng-repeat="(index, master) in data"
but struggling to achieve the desired grouping.
Any suggestions or solutions?