D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ludwigschubert
Full window
Github gist
d3-single-brush
<!DOCTYPE html> <meta charset="utf-8"> <meta title="Minimal D3 v4 single brush example--Ludwig Schubert for Stanford CS448b"> <style> .grid-background { fill: #eee; } .grid line, .grid path { fill: none; stroke: #000; shape-rendering: crispEdges; } </style> <body> <script src="https://d3js.org/d3.v4.min.js"></script> <script> var margin = { top: 10, right: 10, bottom: 10, left: 10 }, width = 960 - margin.left - margin.right, height = 500 - margin.top - margin.bottom; var svg = d3.select("body").append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); svg.append("rect") .attr("class", "grid-background") .attr("width", width) .attr("height", height); d3.brush(svg); </script>
Modified
http://d3js.org/d3.v4.min.js
to a secure url
https://d3js.org/d3.v4.min.js