Is it possible to iterate over a set of items and increment the value of X by 10 each time it is repeated?
For example:
<rect ng-repeat="a in b"
x="0" y="0" fill="#00000" width="206.2"
height="117.7"
class=" {{ a.name }} "
/>
I am looking to achieve a scenario where each repetition increases the X value by 10, starting from 0, then 10, then 20, and so on.