Given the following JSON
{
"ApprovalsSeries":{
"Items":[
{
"Date":"2014-03-01T00:00:00",
"Value":430
},
{
"Date":"2014-03-02T00:00:00",
"Value":173
}
],
"SeriesName":"Place Approvals"
},
"RequestsSeries":{
"Items":[
{
"Date":"2014-03-01T00:00:00",
"Value":143
},
{
"Date":"2014-03-02T00:00:00",
"Value":19
}
],
"SeriesName":"Place Requests"
}
}
I am trying to create a simple bar chart with 2 series, and a category axis using the date. However I cant seem to manage it, and cannot find any examples online of binding to complex json data.
Figured it, the following is a line graph, but the concept is the same as a bar graph.