I want to convert data table to Json. I use node.js I have Data Table as :
-------------------------------------
| Month | Name | Sum |
-------------------------------------
| January | John | 25 |
| February | Jane | 30 |
| February | John | 35 |
| February | Alex | 20 |
| March | Jane | 32 |
| March | John | 35 |
| March | Alex | 30 |
I want convert data to Json :
var data = [{
"Month": "January",
"Information": [{
"Name": "John",
"Sum": 25
}]
}, {
"Month": "February",
"Information": [{
"Name": "Jane",
"Sum": 30
}, {
"Name": "John",
"Sum": 35
}, {
"Name": "Alex",
"Sum": 20
}]
},{
"Month": "March",
"Information": [{
"Name": "Jane",
"Sum": 32
}, {
"Name": "John",
"Sum": 35
}, {
"Name": "Alex",
"Sum": 30
}]
}]
How to do this. I want Json to create stacked bar chart.js. thanks.