I am struggling to convert a JSON Data object into Highcharts Series data. Despite my limited knowledge in JS, I have attempted multiple times without success: Json Object:
{"Matrix":[{"mdate":2002-02-09,"mvalue":33.0,"mt":23,"mb":99},
{"mdate":2002-02-09,"mvalue":34.0,"mt":23,"mb":99},
{"mdate":2002-03-09,"mvalue":39.0,"mt":23,"mb":99},
{"mdate":2002-04-09,"mvalue":340.0,"mt":23,"mb":99},
{"mdate":2002-05-09,"mvalue":348.0,"mt":23,"mb":99}
]
}
The above data needs to be transformed into the following format where mdate is displayed on the x-axis categories and Matrix serves as the title.
series: [
{
name: 'm-1',
data: [33.0,23,99],
}, {
name: 'm-2',
data: [34.0,23,99],
},
]
I would greatly appreciate any assistance in resolving this issue. Thank you in advance.