Skip to content

Instantly share code, notes, and snippets.

View kevinwarne's full-sized avatar

Kevin Warne kevinwarne

View GitHub Profile
@kevinwarne
kevinwarne / index.html
Last active August 29, 2015 14:11
D3 Analog/Digital Clock
<!DOCTYPE html>
<meta charset="utf-8">
<title>D3 Digital/Analog Clock</title>
<style>
.clock-outline {
stroke-width: 3px;
stroke: #666;
fill: #f8f8f8;
}
@kevinwarne
kevinwarne / data.json
Last active August 29, 2015 14:10
Toggle Between Bar Chart and Pie Chart
[
{"x":2009,"y":1259},
{"x":2010,"y":1319},
{"x":2011,"y":1279},
{"x":2012,"y":1450}
]
@kevinwarne
kevinwarne / data.json
Last active August 29, 2015 14:10
Bar Chart With Drilldown Data
[
{"x":2009,"y":1259,"drilldowns":[
{"title":"Gender","values":[
{"label":"Male","value":592},
{"label":"Female","value":668}
]},
{"title":"Level","values":[
{"label":"Freshmen","value":486},
{"label":"Sophmores","value":430},
{"label":"Juniors","value":214},