Reformat brushed()

This commit is contained in:
Jan Philipp Timme 2017-12-30 23:53:56 +01:00
parent d16a86a0c7
commit f90b73ce73
1 changed files with 2 additions and 4 deletions

View File

@ -507,10 +507,8 @@ function createLineGraph(containerId, raceData){
if (d3.event.sourceEvent && d3.event.sourceEvent.type === "zoom") return; // ignore brush-by-zoom
var s = d3.event.selection || x2.range();
x.domain(s.map(x2.invert, x2));
updateElements();
//Update the "preview" rectangle
// Update the "preview" rectangle
svg.select(".zoom").call(zoom.transform, d3.zoomIdentity
.scale(graphPosWidth.width / (s[1] - s[0]))
.translate(-s[0], 0));