Skip to content

Instantly share code, notes, and snippets.

View flunky's full-sized avatar

John C. Hart flunky

View GitHub Profile
@flunky
flunky / .block
Last active April 22, 2017 15:42
The Vega-Lite Grammar of Interaction
license: gpl-3.0
@flunky
flunky / index.html
Created April 22, 2017 16:00
D3 Tooltip Example
<!DOCTYPE html>
<script src="http://d3js.org/d3.v4.min.js"></script>
<style>
.chart rect { fill: steelblue; }
#tooltip {
opacity: 0;
position: absolute;
text-align: center;
width: 60px; height: 40px;
@flunky
flunky / .block
Last active April 24, 2017 05:06
The Grammar of Narrative Visualization
license: gpl-3.0
@flunky
flunky / index.html
Created May 5, 2017 02:09
D3 Force Directed Graph Layout
<!DOCTYPE html>
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
.link line {stroke: black;}
.node circle {stroke: black; fill: white;}
.node text {text-anchor: middle; font-size: 20px}
</style>
<svg width="300" height="300"></svg>