Skip to content

Instantly share code, notes, and snippets.

@t3o-it
t3o-it / index.html
Created June 9, 2017 13:40
DoubleLineChart
a
@t3o-it
t3o-it / README.md
Last active June 22, 2017 08:08
Compare Horizontal Barchart

Comparison bar chart (scratch)

@t3o-it
t3o-it / README.md
Last active June 9, 2017 11:51
Lazo Brush

d3-lazo-brush

@t3o-it
t3o-it / index.html
Last active April 26, 2017 15:33
vertical axis brush
<!DOCTYPE html>
<svg width="960" height="400"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
margin = {top: 20, right: 30, bottom: 30, left: 40},
@t3o-it
t3o-it / index.html
Last active April 26, 2017 15:34
horizontal axis brush
<!DOCTYPE html>
<svg width="960" height="400"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
margin = {top: 20, right: 30, bottom: 30, left: 40},
@t3o-it
t3o-it / index.html
Last active August 1, 2019 17:25
test
<!DOCTYPE html>
<html>
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="tree.js"></script>
<style>
*{
font-family: "Trebuchet MS", Helvetica, sans-serif;
}
.link {