Skip to content

Instantly share code, notes, and snippets.

@levvsha
Created June 21, 2018 17:28
Show Gist options
  • Select an option

  • Save levvsha/74577964f4806fc4529848d775253cd8 to your computer and use it in GitHub Desktop.

Select an option

Save levvsha/74577964f4806fc4529848d775253cd8 to your computer and use it in GitHub Desktop.
const zoom = d3.zoom()
.scaleExtent([1, 10])
.translateExtent([[0, 0], [chartAreaWidth, chartAreaHeight]])
.on('start', () => {
hoverDot
.attr('cx', -5)
.attr('cy', 0);
})
.on('zoom', zoomed);
/* ... */
d3.select('.voronoi-parent').call(zoom);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment