I'm brand new to Java Script and I'm on a mission to loop through my JSON object and populate the Highcharts data series. You can take a look at my static demonstration of what I'm trying to achieve on JS Fiddle. Check out JsFiddle here
Any kind soul out there willing to lend me a hand with this?
Below is the JSON object that needs to be iterated through in order to fill the Highcharts data Series.
{
"OuterKey": {
"v4_acl": {
"aggregate": 100,
"S1": 40,
"S2": 30,
"S3": 20,
"S4": 10
},
"v6_acl": {
"aggregate": 120,
"S1": 14,
"S2": 13,
"S3": 12,
"S4": 11
},
"v4_qos": {
"aggregate": 125,
"S1": 30,
"S2": 14,
"S3": 17,
"S4": 19
},
"v6_qos": {
"aggregate": 80,
"S1": 22,
"S2": 21,
"S3": 20,
"S4": 23
},
"v4_nf": {
"aggregate": 90,
"S1": 20,
"S2": 20,
"S3": 20,
"S4": 26
},
"v6_nf": {
"aggregate": 111,
"S1": 11,
"S2": 44.5,
"S3": 45,
"S4": 80.5
},
"baseline": {
"aggregate": 130,
"S1": 60,
"S2": 10,
"S3": 10,
"S4": 10
}
}
}