Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active August 2, 2019 20:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save mbostock/4349545 to your computer and use it in GitHub Desktop.
Save mbostock/4349545 to your computer and use it in GitHub Desktop.
Brush Handles
license: gpl-3.0
redirect: https://observablehq.com/@d3/brush-handles

This example demonstrates how to add visible and draggable handles to d3-brush, rather than that relying on the invisible boundary of the brush extent. The handle sizes here are exaggerated for demonstration purposes!

<!DOCTYPE html>
<meta charset="utf-8">
<style>
circle {
fill-opacity: 0.2;
transition: fill-opacity 250ms linear;
}
circle.active {
stroke: #f00;
}
</style>
<svg width="960" height="500"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var data = d3.range(800).map(Math.random);
var svg = d3.select("svg"),
margin = {top: 194, right: 50, bottom: 214, left: 50},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom,
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var x = d3.scaleLinear().range([0, width]),
y = d3.randomNormal(height / 2, height / 8);
var brush = d3.brushX()
.extent([[0, 0], [width, height]])
.on("start brush end", brushmoved);
g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));
var circle = g.append("g")
.attr("class", "circle")
.selectAll("circle")
.data(data)
.enter().append("circle")
.attr("transform", function(d) { return "translate(" + x(d) + "," + y() + ")"; })
.attr("r", 3.5);
var gBrush = g.append("g")
.attr("class", "brush")
.call(brush);
var handle = gBrush.selectAll(".handle--custom")
.data([{type: "w"}, {type: "e"}])
.enter().append("path")
.attr("class", "handle--custom")
.attr("fill", "#666")
.attr("fill-opacity", 0.8)
.attr("stroke", "#000")
.attr("stroke-width", 1.5)
.attr("cursor", "ew-resize")
.attr("d", d3.arc()
.innerRadius(0)
.outerRadius(height / 2)
.startAngle(0)
.endAngle(function(d, i) { return i ? Math.PI : -Math.PI; }));
gBrush.call(brush.move, [0.3, 0.5].map(x));
function brushmoved() {
var s = d3.event.selection;
if (s == null) {
handle.attr("display", "none");
circle.classed("active", false);
} else {
var sx = s.map(x.invert);
circle.classed("active", function(d) { return sx[0] <= d && d <= sx[1]; });
handle.attr("display", null).attr("transform", function(d, i) { return "translate(" + s[i] + "," + height / 2 + ")"; });
}
}
</script>
Copy link

ghost commented Jan 10, 2017

Also looking for an answer to the above!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment