I have some JSON Data object and its needs to convert into Highcharts Series data, I tried lot with my minimal knowledge in JS, but i can't,
Json Object :
[
{
"actionId": "fd799109-7cfd-489b-acce-28e2b538258e",
"actionName": "Stand",
"withInteraction": 1.4,
"withoutInteraction": 1.2,
"knee": 2.4,
"arm": 2.3,
"trunk": 0,
"leg": 0,
"neck": 2
},
{
"actionId": "a64eee9f-3b71-4335-a4cd-b62cf1e4e270",
"actionName": "Walk",
"withInteraction": 1.4,
"withoutInteraction": 1.2,
"knee": 2.4,
"arm": 2.3,
"trunk": 0,
"leg": null,
"neck": null
},
{
"actionId": "9ca31804-0084-4bd5-8bfc-32f8a99c1c22",
"actionName": "Bend",
"withInteraction": 2.4,
"withoutInteraction": 2.7,
"knee": 2.4,
"arm": 2.3,
"trunk": 0,
"leg": 0,
"neck": 2
},
{
"actionId": "08f4d687-436b-4faa-9d4f-0c4fe77f7ac7",
"actionName": "Move",
"withInteraction": 1.4,
"withoutInteraction": 1.2,
"knee": 2.4,
"arm": 2.3,
"trunk": 0,
"leg": 0,
"neck": 2
}
]
The above data needs to be converted to be like below
series: [
{
name: 'knee',
data: [2.4, 2.4, 2.4, 2.4],
color : '#78e08f'
}, {
name: 'leg',
data: [0,null,0,0],
color : '#c23616'
},
{...}
]
Please help me out to fix this , Thanks in Advance.
Json Object- no, that's either JSON or a Javscript Object