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!
-
-
Save mmazanec22/4f7d7be82c077f7707d7f89223ccf1c7 to your computer and use it in GitHub Desktop.
Brush Handles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment