I need to build HTML table using angular on a data which has inconsistent number of columns cell in different rows. I need to display shaded cells for columns having lesser number of columns in any particular row. For example -
Data:
a,b,c,d
1,2,3
4,5,6,7
8,9,10,11,12
Can this behavior be achieved using ng-repeat or some other way?
