I have an array of data that I need help turning into a table using AngularJS ng-repeat. Can anyone assist with this task?
var data=[
{status:"open",year:2014,value:100.00},
{status:"open",year:2015,value:200.00},
{status:"open",year:2016,value:300.00},
{status:"approved",year:2016,value:10.00},
{status:"approved",year:2015,value:20.00},
{status:"approved",year:2016,value:30.00},
{status:"closed",year:2016,value:1.00},
{status:"closed",year:2014,value:3.00},
{status:"closed",year:2013,value:-10.00}
]