Skip to content

Instantly share code, notes, and snippets.

@timelyportfolio
Last active November 28, 2017 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timelyportfolio/50ffbfe3268466e316003997b6231f62 to your computer and use it in GitHub Desktop.
Save timelyportfolio/50ffbfe3268466e316003997b6231f62 to your computer and use it in GitHub Desktop.
d3 (v3) brush with numeric labels
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/d3@3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
.axis path, line {
fill: none;
stroke: black;
}
.brush .background {
stroke: none;
fill: none;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
.brush text {
font-size: 0.75em;
}
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see in this editor!
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500)
var yScale = d3.scale.linear().domain([0,1000]).range([50,250])
var dimension = svg.append("g")
.attr("transform", "translate(200,0)")
dimension.append("g")
.classed("axis axis-y", true)
.call(d3.svg.axis().scale(yScale).orient("right"));
var brush = d3.svg.brush()
.y(yScale)
.on("brush", brushmove);
var brushg = dimension.append("g")
.classed("brush", true)
.call(brush);
brushg.selectAll("rect")
.style("visibility", null)
.attr("x", -10)
.attr("width", 20);
brushg.selectAll(".resize rect")
.attr("height", 3);
brushg.selectAll(".resize.n")
.append("text")
.text("")
.style("text-anchor", "end")
.attr("dx", "-0.7em")
.attr("dy", "-0.45em")
brushg.selectAll(".resize.s")
.append("text")
.text("")
.style("text-anchor", "end")
.attr("dx", "-0.7em")
.attr("dy", "0.8em")
function brushmove() {
debugger
d3.select(this).select(".resize.n text").text(brush.extent()[0]);
d3.select(this).select(".resize.s text").text(brush.extent()[1]);
}
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment