A d3.js chart loading csv from data/
Showing the tweetchazzer Games and Moves over the last 30 days. (Updated dayly)
The "span" is defined in the page/charttest.py and the d3.js javascript chart is entirely defined in the template (charttest.tmpl) The data is loaded on the fly (even in this static page) from
data/game_stats.csv
d3.csv("/data/game_stats.csv", function(error, data) {
...
}
And here an example in chart.js
The data and javascript for this chart are entirely defined in the page markdown. (see pages/charttest).