Guest User

Untitled

a guest
Nov 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. dropDown.on("change", function () {
  2. var selected = this.value;
  3. displayOthers = this.checked ? "inline" : "none";
  4. display = this.checked ? "none" : "inline";
  5.  
  6. hGsvg.selectAll(".bar").data(data[this.value])
  7. .filter(function() {return (selected != sF) ;})
  8. .attr("display", displayOthers);
  9.  
  10.  
  11. hGsvg.selectAll(".bar").data(data[this.value])
  12. .filter(function() {return (selected == sF) ;})
  13. .attr("display", display);
  14.  
  15. console.log(selected);
  16.  
  17. });
Add Comment
Please, Sign In to add comment