Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. context.append("g")
  2. .attr("class", "brush")
  3. .call(brush)
  4. .call(brush.move, [x2(new Date(2013, 0, 1)), x2(new Date(2013, 6, 1))])
  5. .selectAll(".overlay")
  6. .each(function(d) {
  7. d.type = "selection";
  8. })
  9. .on("mousedown touchstart", function() { d3.event.stopPropagation(); })
  10. .on("mousedown touchstart", brushcentered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement