{
"ABC 111": [
{
"id": 01,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
},
{
"id": 02,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
}
],
"XYZ 222": [
{
"id": 01,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
},
{
"id": 02,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
}
]
}
The error is : Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays.
TN 47 RG 7845
as that is the array, instead of an object. – ViqMontana