Skip to content

Instantly share code, notes, and snippets.

@jthoenes
Forked from anonymous/options.json
Created September 24, 2012 19:08
Show Gist options
  • Save jthoenes/3777704 to your computer and use it in GitHub Desktop.
Save jthoenes/3777704 to your computer and use it in GitHub Desktop.
{
"libraries": [
"d3"
],
"mode": "javascript",
"layout": "sketchpad mode"
}
.line path{
fill:none;
stroke-width: 2px;
}
.line-all path {
stroke: #f00;
}
.point {
stroke: #f00;
fill: #fbb;
stroke-width: 2px;
}
.bubble {
fill: #444;
font-family: sans-serif;
font-weight: 600;
font-style: italic;
}
<div id='chart'></div>
var stats = livecoding.json[0].stats;
stats = stats.map(function(d){
return {
id: d.id,
count: d.count,
label : d.label,
moment: Date.parse(d.moment)
}
});
var w = 700;
var h = 300;
var wGutter = 20;
var hGutter = 20;
var maxCount = d3.max(stats, function(d){ return d.count; });
var minDate = d3.min(stats, function(d){return d.moment; });
var maxDate = d3.max(stats, function(d){return d.moment; });
var x = d3.time.scale().domain([minDate, maxDate]).range([0, w - wGutter*2]);
var y = d3.scale.linear().domain([0, maxCount]).range([h - hGutter*2, 0]);
var svg = d3.select('#chart')
.append('svg:svg')
.attr('class', 'line line-all')
.attr('width', w)
.attr('height', h);
var panel = svg
.append("svg:g")
.attr("transform", "translate("+ wGutter +"," + hGutter + ")");
var vis = panel
.append('svg:g')
.attr('class', 'line line-all')
.attr('width', w - wGutter*2)
.attr('height', h - hGutter*2);
vis.selectAll('path.line')
.data([stats])
.enter()
.append("svg:path")
.attr("d", d3.svg.line()
.x(function(d, i) {
return x(d.moment);
})
.y(function(d){
return y(d.count);
})
);
var bubbleId = function(d){ return "bubble-" + d.id };
vis.selectAll('text.bubble')
.data(stats).enter().append('svg:text')
.text(function(d){ return "" + d.count + " Tweets on " + d.label })
.attr('id', bubbleId)
.classed('bubble hidden', true)
.attr('text-anchor', 'end')
.attr('dy', 275)
.attr('dx', 650);
var bubbleForPoint = function(point){
return d3.select('#' + d3.select(point).attr('data-bubble'));
}
var pointMouseOver = function(){
bubbleForPoint(this).classed('hidden', false);
d3.select(this).attr('r', 6);
}
var pointMouseOut = function(){
bubbleForPoint(this).classed('hidden', true);
d3.select(this).attr('r', 4);
}
vis.selectAll('.point')
.data(stats)
.enter().append("svg:circle")
.attr("class", function(d, i){ return d.count == maxCount ? 'point max' : 'point'})
.attr("cx", function(d, i){ return x(d.moment); })
.attr("cy", function(d){ return y(d.count); })
.attr("r", function(d, i){ return d.count == maxCount ? 6 : 4; })
.attr("data-bubble", bubbleId)
.on('mouseover', pointMouseOver)
.on('mouseout', pointMouseOut)
.on('click', function(d, i){ console.log(d.moment, d.count, i) });
[
{
"type":"all",
"aggregate":true,
"stats":[
{
"id":"all-1",
"label":"Sep 24th",
"moment":"2012-09-24",
"count":3324
},
{
"id":"all-2",
"label":"Sep 23th",
"moment":"2012-09-23",
"count":2207
},
{
"id":"all-3",
"label":"Sep 22th",
"moment":"2012-09-22",
"count":1647
},
{
"id":"all-4",
"label":"Sep 21th",
"moment":"2012-09-21",
"count":3827
},
{
"id":"all-5",
"label":"Sep 20th",
"moment":"2012-09-20",
"count":2972
},
{
"id":"all-6",
"label":"Sep 19th",
"moment":"2012-09-19",
"count":2633
},
{
"id":"all-7",
"label":"Sep 18th",
"moment":"2012-09-18",
"count":1468
},
{
"id":"all-8",
"label":"Sep 17th",
"moment":"2012-09-17",
"count":2480
},
{
"id":"all-9",
"label":"Sep 16th",
"moment":"2012-09-16",
"count":2916
},
{
"id":"all-10",
"label":"Sep 15th",
"moment":"2012-09-15",
"count":2851
},
{
"id":"all-11",
"label":"Sep 14th",
"moment":"2012-09-14",
"count":2480
},
{
"id":"all-12",
"label":"Sep 13th",
"moment":"2012-09-13",
"count":1684
},
{
"id":"all-13",
"label":"Sep 12th",
"moment":"2012-09-12",
"count":2122
},
{
"id":"all-14",
"label":"Sep 11th",
"moment":"2012-09-11",
"count":2165
},
{
"id":"all-15",
"label":"Sep 10th",
"moment":"2012-09-10",
"count":3049
},
{
"id":"all-16",
"label":"Sep 09th",
"moment":"2012-09-09",
"count":2574
},
{
"id":"all-17",
"label":"Sep 08th",
"moment":"2012-09-08",
"count":238
},
{
"id":"all-18",
"label":"Sep 07th",
"moment":"2012-09-07",
"count":2153
},
{
"id":"all-19",
"label":"Sep 06th",
"moment":"2012-09-06",
"count":2514
},
{
"id":"all-20",
"label":"Sep 05th",
"moment":"2012-09-05",
"count":425
},
{
"id":"all-21",
"label":"Sep 04th",
"moment":"2012-09-04",
"count":2406
},
{
"id":"all-22",
"label":"Sep 03th",
"moment":"2012-09-03",
"count":1660
},
{
"id":"all-23",
"label":"Sep 02th",
"moment":"2012-09-02",
"count":3047
},
{
"id":"all-24",
"label":"Sep 01th",
"moment":"2012-09-01",
"count":1204
},
{
"id":"all-25",
"label":"Aug 31th",
"moment":"2012-08-31",
"count":1750
},
{
"id":"all-26",
"label":"Aug 30th",
"moment":"2012-08-30",
"count":1381
},
{
"id":"all-27",
"label":"Aug 29th",
"moment":"2012-08-29",
"count":1685
},
{
"id":"all-28",
"label":"Aug 28th",
"moment":"2012-08-28",
"count":2388
},
{
"id":"all-29",
"label":"Aug 27th",
"moment":"2012-08-27",
"count":1002
},
{
"id":"all-30",
"label":"Aug 26th",
"moment":"2012-08-26",
"count":727
},
{
"id":"all-31",
"label":"Aug 25th",
"moment":"2012-08-25",
"count":2278
},
{
"id":"all-32",
"label":"Aug 24th",
"moment":"2012-08-24",
"count":1633
},
{
"id":"all-33",
"label":"Aug 23th",
"moment":"2012-08-23",
"count":2521
},
{
"id":"all-34",
"label":"Aug 22th",
"moment":"2012-08-22",
"count":3328
},
{
"id":"all-35",
"label":"Aug 21th",
"moment":"2012-08-21",
"count":1134
},
{
"id":"all-36",
"label":"Aug 20th",
"moment":"2012-08-20",
"count":2403
},
{
"id":"all-37",
"label":"Aug 19th",
"moment":"2012-08-19",
"count":4326
},
{
"id":"all-38",
"label":"Aug 18th",
"moment":"2012-08-18",
"count":452
},
{
"id":"all-39",
"label":"Aug 17th",
"moment":"2012-08-17",
"count":2115
},
{
"id":"all-40",
"label":"Aug 16th",
"moment":"2012-08-16",
"count":1487
},
{
"id":"all-41",
"label":"Aug 15th",
"moment":"2012-08-15",
"count":1400
},
{
"id":"all-42",
"label":"Aug 14th",
"moment":"2012-08-14",
"count":792
},
{
"id":"all-43",
"label":"Aug 13th",
"moment":"2012-08-13",
"count":1737
},
{
"id":"all-44",
"label":"Aug 12th",
"moment":"2012-08-12",
"count":1356
},
{
"id":"all-45",
"label":"Aug 11th",
"moment":"2012-08-11",
"count":1764
},
{
"id":"all-46",
"label":"Aug 10th",
"moment":"2012-08-10",
"count":2221
},
{
"id":"all-47",
"label":"Aug 09th",
"moment":"2012-08-09",
"count":1921
},
{
"id":"all-48",
"label":"Aug 08th",
"moment":"2012-08-08",
"count":1514
},
{
"id":"all-49",
"label":"Aug 07th",
"moment":"2012-08-07",
"count":2721
},
{
"id":"all-50",
"label":"Aug 06th",
"moment":"2012-08-06",
"count":1427
},
{
"id":"all-51",
"label":"Aug 05th",
"moment":"2012-08-05",
"count":1819
},
{
"id":"all-52",
"label":"Aug 04th",
"moment":"2012-08-04",
"count":1784
},
{
"id":"all-53",
"label":"Aug 03th",
"moment":"2012-08-03",
"count":1424
},
{
"id":"all-54",
"label":"Aug 02th",
"moment":"2012-08-02",
"count":2390
},
{
"id":"all-55",
"label":"Aug 01th",
"moment":"2012-08-01",
"count":3198
},
{
"id":"all-56",
"label":"Jul 31th",
"moment":"2012-07-31",
"count":4514
},
{
"id":"all-57",
"label":"Jul 30th",
"moment":"2012-07-30",
"count":1802
},
{
"id":"all-58",
"label":"Jul 29th",
"moment":"2012-07-29",
"count":1827
},
{
"id":"all-59",
"label":"Jul 28th",
"moment":"2012-07-28",
"count":2407
},
{
"id":"all-60",
"label":"Jul 27th",
"moment":"2012-07-27",
"count":3402
}
]
},
{
"type":"fail",
"aggregate":false,
"stats":[
{
"id":"fail-1",
"label":"Sep 24th",
"moment":"2012-09-24",
"count":65
},
{
"id":"fail-2",
"label":"Sep 23th",
"moment":"2012-09-23",
"count":347
},
{
"id":"fail-3",
"label":"Sep 22th",
"moment":"2012-09-22",
"count":1381
},
{
"id":"fail-4",
"label":"Sep 21th",
"moment":"2012-09-21",
"count":56
},
{
"id":"fail-5",
"label":"Sep 20th",
"moment":"2012-09-20",
"count":519
},
{
"id":"fail-6",
"label":"Sep 19th",
"moment":"2012-09-19",
"count":311
},
{
"id":"fail-7",
"label":"Sep 18th",
"moment":"2012-09-18",
"count":590
},
{
"id":"fail-8",
"label":"Sep 17th",
"moment":"2012-09-17",
"count":1339
},
{
"id":"fail-9",
"label":"Sep 16th",
"moment":"2012-09-16",
"count":773
},
{
"id":"fail-10",
"label":"Sep 15th",
"moment":"2012-09-15",
"count":286
},
{
"id":"fail-11",
"label":"Sep 14th",
"moment":"2012-09-14",
"count":1338
},
{
"id":"fail-12",
"label":"Sep 13th",
"moment":"2012-09-13",
"count":603
},
{
"id":"fail-13",
"label":"Sep 12th",
"moment":"2012-09-12",
"count":747
},
{
"id":"fail-14",
"label":"Sep 11th",
"moment":"2012-09-11",
"count":46
},
{
"id":"fail-15",
"label":"Sep 10th",
"moment":"2012-09-10",
"count":925
},
{
"id":"fail-16",
"label":"Sep 09th",
"moment":"2012-09-09",
"count":783
},
{
"id":"fail-17",
"label":"Sep 08th",
"moment":"2012-09-08",
"count":25
},
{
"id":"fail-18",
"label":"Sep 07th",
"moment":"2012-09-07",
"count":1020
},
{
"id":"fail-19",
"label":"Sep 06th",
"moment":"2012-09-06",
"count":451
},
{
"id":"fail-20",
"label":"Sep 05th",
"moment":"2012-09-05",
"count":317
},
{
"id":"fail-21",
"label":"Sep 04th",
"moment":"2012-09-04",
"count":1046
},
{
"id":"fail-22",
"label":"Sep 03th",
"moment":"2012-09-03",
"count":602
},
{
"id":"fail-23",
"label":"Sep 02th",
"moment":"2012-09-02",
"count":220
},
{
"id":"fail-24",
"label":"Sep 01th",
"moment":"2012-09-01",
"count":122
},
{
"id":"fail-25",
"label":"Aug 31th",
"moment":"2012-08-31",
"count":873
},
{
"id":"fail-26",
"label":"Aug 30th",
"moment":"2012-08-30",
"count":1083
},
{
"id":"fail-27",
"label":"Aug 29th",
"moment":"2012-08-29",
"count":178
},
{
"id":"fail-28",
"label":"Aug 28th",
"moment":"2012-08-28",
"count":752
},
{
"id":"fail-29",
"label":"Aug 27th",
"moment":"2012-08-27",
"count":161
},
{
"id":"fail-30",
"label":"Aug 26th",
"moment":"2012-08-26",
"count":216
},
{
"id":"fail-31",
"label":"Aug 25th",
"moment":"2012-08-25",
"count":1420
},
{
"id":"fail-32",
"label":"Aug 24th",
"moment":"2012-08-24",
"count":338
},
{
"id":"fail-33",
"label":"Aug 23th",
"moment":"2012-08-23",
"count":522
},
{
"id":"fail-34",
"label":"Aug 22th",
"moment":"2012-08-22",
"count":889
},
{
"id":"fail-35",
"label":"Aug 21th",
"moment":"2012-08-21",
"count":350
},
{
"id":"fail-36",
"label":"Aug 20th",
"moment":"2012-08-20",
"count":632
},
{
"id":"fail-37",
"label":"Aug 19th",
"moment":"2012-08-19",
"count":854
},
{
"id":"fail-38",
"label":"Aug 18th",
"moment":"2012-08-18",
"count":319
},
{
"id":"fail-39",
"label":"Aug 17th",
"moment":"2012-08-17",
"count":261
},
{
"id":"fail-40",
"label":"Aug 16th",
"moment":"2012-08-16",
"count":915
},
{
"id":"fail-41",
"label":"Aug 15th",
"moment":"2012-08-15",
"count":454
},
{
"id":"fail-42",
"label":"Aug 14th",
"moment":"2012-08-14",
"count":470
},
{
"id":"fail-43",
"label":"Aug 13th",
"moment":"2012-08-13",
"count":589
},
{
"id":"fail-44",
"label":"Aug 12th",
"moment":"2012-08-12",
"count":50
},
{
"id":"fail-45",
"label":"Aug 11th",
"moment":"2012-08-11",
"count":254
},
{
"id":"fail-46",
"label":"Aug 10th",
"moment":"2012-08-10",
"count":878
},
{
"id":"fail-47",
"label":"Aug 09th",
"moment":"2012-08-09",
"count":577
},
{
"id":"fail-48",
"label":"Aug 08th",
"moment":"2012-08-08",
"count":613
},
{
"id":"fail-49",
"label":"Aug 07th",
"moment":"2012-08-07",
"count":682
},
{
"id":"fail-50",
"label":"Aug 06th",
"moment":"2012-08-06",
"count":1136
},
{
"id":"fail-51",
"label":"Aug 05th",
"moment":"2012-08-05",
"count":604
},
{
"id":"fail-52",
"label":"Aug 04th",
"moment":"2012-08-04",
"count":382
},
{
"id":"fail-53",
"label":"Aug 03th",
"moment":"2012-08-03",
"count":18
},
{
"id":"fail-54",
"label":"Aug 02th",
"moment":"2012-08-02",
"count":642
},
{
"id":"fail-55",
"label":"Aug 01th",
"moment":"2012-08-01",
"count":1324
},
{
"id":"fail-56",
"label":"Jul 31th",
"moment":"2012-07-31",
"count":1580
},
{
"id":"fail-57",
"label":"Jul 30th",
"moment":"2012-07-30",
"count":405
},
{
"id":"fail-58",
"label":"Jul 29th",
"moment":"2012-07-29",
"count":311
},
{
"id":"fail-59",
"label":"Jul 28th",
"moment":"2012-07-28",
"count":578
},
{
"id":"fail-60",
"label":"Jul 27th",
"moment":"2012-07-27",
"count":711
}
]
},
{
"type":"cool",
"aggregate":false,
"stats":[
{
"id":"cool-1",
"label":"Sep 24th",
"moment":"2012-09-24",
"count":1707
},
{
"id":"cool-2",
"label":"Sep 23th",
"moment":"2012-09-23",
"count":382
},
{
"id":"cool-3",
"label":"Sep 22th",
"moment":"2012-09-22",
"count":150
},
{
"id":"cool-4",
"label":"Sep 21th",
"moment":"2012-09-21",
"count":1623
},
{
"id":"cool-5",
"label":"Sep 20th",
"moment":"2012-09-20",
"count":1235
},
{
"id":"cool-6",
"label":"Sep 19th",
"moment":"2012-09-19",
"count":1425
},
{
"id":"cool-7",
"label":"Sep 18th",
"moment":"2012-09-18",
"count":292
},
{
"id":"cool-8",
"label":"Sep 17th",
"moment":"2012-09-17",
"count":155
},
{
"id":"cool-9",
"label":"Sep 16th",
"moment":"2012-09-16",
"count":894
},
{
"id":"cool-10",
"label":"Sep 15th",
"moment":"2012-09-15",
"count":1593
},
{
"id":"cool-11",
"label":"Sep 14th",
"moment":"2012-09-14",
"count":675
},
{
"id":"cool-12",
"label":"Sep 13th",
"moment":"2012-09-13",
"count":378
},
{
"id":"cool-13",
"label":"Sep 12th",
"moment":"2012-09-12",
"count":408
},
{
"id":"cool-14",
"label":"Sep 11th",
"moment":"2012-09-11",
"count":580
},
{
"id":"cool-15",
"label":"Sep 10th",
"moment":"2012-09-10",
"count":1227
},
{
"id":"cool-16",
"label":"Sep 09th",
"moment":"2012-09-09",
"count":241
},
{
"id":"cool-17",
"label":"Sep 08th",
"moment":"2012-09-08",
"count":79
},
{
"id":"cool-18",
"label":"Sep 07th",
"moment":"2012-09-07",
"count":738
},
{
"id":"cool-19",
"label":"Sep 06th",
"moment":"2012-09-06",
"count":1877
},
{
"id":"cool-20",
"label":"Sep 05th",
"moment":"2012-09-05",
"count":76
},
{
"id":"cool-21",
"label":"Sep 04th",
"moment":"2012-09-04",
"count":349
},
{
"id":"cool-22",
"label":"Sep 03th",
"moment":"2012-09-03",
"count":203
},
{
"id":"cool-23",
"label":"Sep 02th",
"moment":"2012-09-02",
"count":1941
},
{
"id":"cool-24",
"label":"Sep 01th",
"moment":"2012-09-01",
"count":103
},
{
"id":"cool-25",
"label":"Aug 31th",
"moment":"2012-08-31",
"count":75
},
{
"id":"cool-26",
"label":"Aug 30th",
"moment":"2012-08-30",
"count":245
},
{
"id":"cool-27",
"label":"Aug 29th",
"moment":"2012-08-29",
"count":164
},
{
"id":"cool-28",
"label":"Aug 28th",
"moment":"2012-08-28",
"count":937
},
{
"id":"cool-29",
"label":"Aug 27th",
"moment":"2012-08-27",
"count":171
},
{
"id":"cool-30",
"label":"Aug 26th",
"moment":"2012-08-26",
"count":450
},
{
"id":"cool-31",
"label":"Aug 25th",
"moment":"2012-08-25",
"count":90
},
{
"id":"cool-32",
"label":"Aug 24th",
"moment":"2012-08-24",
"count":127
},
{
"id":"cool-33",
"label":"Aug 23th",
"moment":"2012-08-23",
"count":1448
},
{
"id":"cool-34",
"label":"Aug 22th",
"moment":"2012-08-22",
"count":1342
},
{
"id":"cool-35",
"label":"Aug 21th",
"moment":"2012-08-21",
"count":398
},
{
"id":"cool-36",
"label":"Aug 20th",
"moment":"2012-08-20",
"count":360
},
{
"id":"cool-37",
"label":"Aug 19th",
"moment":"2012-08-19",
"count":1720
},
{
"id":"cool-38",
"label":"Aug 18th",
"moment":"2012-08-18",
"count":70
},
{
"id":"cool-39",
"label":"Aug 17th",
"moment":"2012-08-17",
"count":680
},
{
"id":"cool-40",
"label":"Aug 16th",
"moment":"2012-08-16",
"count":208
},
{
"id":"cool-41",
"label":"Aug 15th",
"moment":"2012-08-15",
"count":61
},
{
"id":"cool-42",
"label":"Aug 14th",
"moment":"2012-08-14",
"count":108
},
{
"id":"cool-43",
"label":"Aug 13th",
"moment":"2012-08-13",
"count":359
},
{
"id":"cool-44",
"label":"Aug 12th",
"moment":"2012-08-12",
"count":690
},
{
"id":"cool-45",
"label":"Aug 11th",
"moment":"2012-08-11",
"count":46
},
{
"id":"cool-46",
"label":"Aug 10th",
"moment":"2012-08-10",
"count":450
},
{
"id":"cool-47",
"label":"Aug 09th",
"moment":"2012-08-09",
"count":168
},
{
"id":"cool-48",
"label":"Aug 08th",
"moment":"2012-08-08",
"count":41
},
{
"id":"cool-49",
"label":"Aug 07th",
"moment":"2012-08-07",
"count":963
},
{
"id":"cool-50",
"label":"Aug 06th",
"moment":"2012-08-06",
"count":42
},
{
"id":"cool-51",
"label":"Aug 05th",
"moment":"2012-08-05",
"count":640
},
{
"id":"cool-52",
"label":"Aug 04th",
"moment":"2012-08-04",
"count":1261
},
{
"id":"cool-53",
"label":"Aug 03th",
"moment":"2012-08-03",
"count":598
},
{
"id":"cool-54",
"label":"Aug 02th",
"moment":"2012-08-02",
"count":949
},
{
"id":"cool-55",
"label":"Aug 01th",
"moment":"2012-08-01",
"count":248
},
{
"id":"cool-56",
"label":"Jul 31th",
"moment":"2012-07-31",
"count":1070
},
{
"id":"cool-57",
"label":"Jul 30th",
"moment":"2012-07-30",
"count":559
},
{
"id":"cool-58",
"label":"Jul 29th",
"moment":"2012-07-29",
"count":562
},
{
"id":"cool-59",
"label":"Jul 28th",
"moment":"2012-07-28",
"count":745
},
{
"id":"cool-60",
"label":"Jul 27th",
"moment":"2012-07-27",
"count":2402
}
]
},
{
"type":"new",
"aggregate":false,
"stats":[
{
"id":"new-1",
"label":"Sep 24th",
"moment":"2012-09-24",
"count":1552
},
{
"id":"new-2",
"label":"Sep 23th",
"moment":"2012-09-23",
"count":1478
},
{
"id":"new-3",
"label":"Sep 22th",
"moment":"2012-09-22",
"count":116
},
{
"id":"new-4",
"label":"Sep 21th",
"moment":"2012-09-21",
"count":2148
},
{
"id":"new-5",
"label":"Sep 20th",
"moment":"2012-09-20",
"count":1218
},
{
"id":"new-6",
"label":"Sep 19th",
"moment":"2012-09-19",
"count":897
},
{
"id":"new-7",
"label":"Sep 18th",
"moment":"2012-09-18",
"count":586
},
{
"id":"new-8",
"label":"Sep 17th",
"moment":"2012-09-17",
"count":986
},
{
"id":"new-9",
"label":"Sep 16th",
"moment":"2012-09-16",
"count":1249
},
{
"id":"new-10",
"label":"Sep 15th",
"moment":"2012-09-15",
"count":972
},
{
"id":"new-11",
"label":"Sep 14th",
"moment":"2012-09-14",
"count":467
},
{
"id":"new-12",
"label":"Sep 13th",
"moment":"2012-09-13",
"count":703
},
{
"id":"new-13",
"label":"Sep 12th",
"moment":"2012-09-12",
"count":967
},
{
"id":"new-14",
"label":"Sep 11th",
"moment":"2012-09-11",
"count":1539
},
{
"id":"new-15",
"label":"Sep 10th",
"moment":"2012-09-10",
"count":897
},
{
"id":"new-16",
"label":"Sep 09th",
"moment":"2012-09-09",
"count":1550
},
{
"id":"new-17",
"label":"Sep 08th",
"moment":"2012-09-08",
"count":134
},
{
"id":"new-18",
"label":"Sep 07th",
"moment":"2012-09-07",
"count":395
},
{
"id":"new-19",
"label":"Sep 06th",
"moment":"2012-09-06",
"count":186
},
{
"id":"new-20",
"label":"Sep 05th",
"moment":"2012-09-05",
"count":32
},
{
"id":"new-21",
"label":"Sep 04th",
"moment":"2012-09-04",
"count":1011
},
{
"id":"new-22",
"label":"Sep 03th",
"moment":"2012-09-03",
"count":855
},
{
"id":"new-23",
"label":"Sep 02th",
"moment":"2012-09-02",
"count":886
},
{
"id":"new-24",
"label":"Sep 01th",
"moment":"2012-09-01",
"count":979
},
{
"id":"new-25",
"label":"Aug 31th",
"moment":"2012-08-31",
"count":802
},
{
"id":"new-26",
"label":"Aug 30th",
"moment":"2012-08-30",
"count":53
},
{
"id":"new-27",
"label":"Aug 29th",
"moment":"2012-08-29",
"count":1343
},
{
"id":"new-28",
"label":"Aug 28th",
"moment":"2012-08-28",
"count":699
},
{
"id":"new-29",
"label":"Aug 27th",
"moment":"2012-08-27",
"count":670
},
{
"id":"new-30",
"label":"Aug 26th",
"moment":"2012-08-26",
"count":61
},
{
"id":"new-31",
"label":"Aug 25th",
"moment":"2012-08-25",
"count":768
},
{
"id":"new-32",
"label":"Aug 24th",
"moment":"2012-08-24",
"count":1168
},
{
"id":"new-33",
"label":"Aug 23th",
"moment":"2012-08-23",
"count":551
},
{
"id":"new-34",
"label":"Aug 22th",
"moment":"2012-08-22",
"count":1097
},
{
"id":"new-35",
"label":"Aug 21th",
"moment":"2012-08-21",
"count":386
},
{
"id":"new-36",
"label":"Aug 20th",
"moment":"2012-08-20",
"count":1411
},
{
"id":"new-37",
"label":"Aug 19th",
"moment":"2012-08-19",
"count":1752
},
{
"id":"new-38",
"label":"Aug 18th",
"moment":"2012-08-18",
"count":63
},
{
"id":"new-39",
"label":"Aug 17th",
"moment":"2012-08-17",
"count":1174
},
{
"id":"new-40",
"label":"Aug 16th",
"moment":"2012-08-16",
"count":364
},
{
"id":"new-41",
"label":"Aug 15th",
"moment":"2012-08-15",
"count":885
},
{
"id":"new-42",
"label":"Aug 14th",
"moment":"2012-08-14",
"count":214
},
{
"id":"new-43",
"label":"Aug 13th",
"moment":"2012-08-13",
"count":789
},
{
"id":"new-44",
"label":"Aug 12th",
"moment":"2012-08-12",
"count":616
},
{
"id":"new-45",
"label":"Aug 11th",
"moment":"2012-08-11",
"count":1464
},
{
"id":"new-46",
"label":"Aug 10th",
"moment":"2012-08-10",
"count":893
},
{
"id":"new-47",
"label":"Aug 09th",
"moment":"2012-08-09",
"count":1176
},
{
"id":"new-48",
"label":"Aug 08th",
"moment":"2012-08-08",
"count":860
},
{
"id":"new-49",
"label":"Aug 07th",
"moment":"2012-08-07",
"count":1076
},
{
"id":"new-50",
"label":"Aug 06th",
"moment":"2012-08-06",
"count":249
},
{
"id":"new-51",
"label":"Aug 05th",
"moment":"2012-08-05",
"count":575
},
{
"id":"new-52",
"label":"Aug 04th",
"moment":"2012-08-04",
"count":141
},
{
"id":"new-53",
"label":"Aug 03th",
"moment":"2012-08-03",
"count":808
},
{
"id":"new-54",
"label":"Aug 02th",
"moment":"2012-08-02",
"count":799
},
{
"id":"new-55",
"label":"Aug 01th",
"moment":"2012-08-01",
"count":1626
},
{
"id":"new-56",
"label":"Jul 31th",
"moment":"2012-07-31",
"count":1864
},
{
"id":"new-57",
"label":"Jul 30th",
"moment":"2012-07-30",
"count":838
},
{
"id":"new-58",
"label":"Jul 29th",
"moment":"2012-07-29",
"count":954
},
{
"id":"new-59",
"label":"Jul 28th",
"moment":"2012-07-28",
"count":1084
},
{
"id":"new-60",
"label":"Jul 27th",
"moment":"2012-07-27",
"count":289
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment