I've a JSON data like this
{
"srno": 1234567890,
"datetime": "MM-dd-yyyy HH:mm",
"meters": [
{
"mid": 63,
"phase":1,
"v": 1234,
"c": 5678,
"kw": 2348,
"kwh": 2342,
"okda" : 1,
"poca" : 1
},
{
"mid": 62,
"phase":2,
"v": 1234,
"c": 5678,
"kw": 2348,
"kwh": 2342,
"okda" : 1,
"poca" : 3
}
]
}
All i want is to plot this data on my webpage. Please Help me out. The Jquery for the same can be inferred from this link
https://jsfiddle.net/93ttkjr4/
i want this data to be populated on my web page.