Last active
August 29, 2015 14:13
-
-
Save bmvakili/da59c75fd691df373379 to your computer and use it in GitHub Desktop.
handlebar example json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"errors" : "", | |
"numDashboards" : 3, | |
"dashboard" : | |
[ { | |
"id" : 0, | |
"name" : "costs", | |
"numCharts" : 1, | |
"chart" : [ | |
{ | |
"id" : "00", | |
"name" : "Costs", | |
"type" : "bar", | |
"description" : "Costs from 2012 - 2014", | |
"headers" : [ | |
"2012", | |
"2013", | |
"2014" | |
], | |
"data" : [ | |
"$10,000", | |
"$100,000", | |
"$1,000,000" | |
] | |
} | |
] | |
}, | |
{ | |
"id" : 1, | |
"name" : "revenues", | |
"numCharts" : 1, | |
"chart" : [{ | |
"id" : "10", | |
"name" : "Costs", | |
"type" : "pie", | |
"description" : "Revenue from 2012 - 2014", | |
"headers" : [ | |
"2012", | |
"2013", | |
"2014" | |
], | |
"data" : [ | |
"$1,100", | |
"$110,000", | |
"$1,100,000" | |
] | |
} | |
] | |
}, | |
{ | |
"id" : 2, | |
"name" : "forecasts", | |
"numCharts" : 2, | |
"chart" : [ | |
{ | |
"id" : "20", | |
"name" : "Costs", | |
"type" : "line", | |
"description" : "Costs forecast 2015 - 2017", | |
"headers" : [ | |
"2015", | |
"2016", | |
"2017" | |
], | |
"data" : [ | |
"$2,000,000", | |
"$3,000,000", | |
"$5,000,000" | |
] | |
}, | |
{ | |
"id" : "21", | |
"name" : "Revenue", | |
"type" : "line", | |
"description" : "Revenue forecast 2015 - 2017", | |
"headers" : [ | |
"2015", | |
"2016", | |
"2017" | |
], | |
"data" : [ | |
"$2,000,000", | |
"$3,000,000", | |
"$5,000,000" | |
] | |
} | |
] | |
} ] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment