I have the following array data,,I want to use Angularjs ng-repeat to put this data in table like the following image, Can anyone help please?
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}
]