Hello,
I have json response in similar format. But I was not able to plot this data in repeating group. Can anyone tell me how can we achieve this.
{
“data”: [
{
“name”: “sample1”,
“arr”: [
{
“title”: “Temp1”,
“average”: 68,
“min”: 59,
“max”: 112
},
{
“title”: “Temp2”,
“average”: 88,
“min”: 89,
“max”: 182
}
]
},
{
“name”: “sample2”,
“arr”: [
{
“title”: “Temp1”,
“average”: 48,
“min”: 49,
“max”: 142
},
{
“title”: “Temp2”,
“average”: 78,
“min”: 79,
“max”: 117
}
]
}
]
}
I wanted to display this json data into table
name temp1_avg temp2_avg temp1_max temp2_max
sample1 68 88 112 182
sample2 48 78 142 117