Skip to content

Instantly share code, notes, and snippets.

@nsonnadsnip
Forked from nsonnad/D3: Select all but this
Last active December 11, 2018 01:29
Show Gist options
  • Save nsonnadsnip/7703976 to your computer and use it in GitHub Desktop.
Save nsonnadsnip/7703976 to your computer and use it in GitHub Desktop.
d3: select all but this
function mouseOn () {
var circleUnderMouse = this;
d3.selectAll('.rectGroup').transition().style('opacity',function () {
return (this === circleUnderMouse) ? 1.0 : 0.5;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment