Last active
February 4, 2018 16:18
-
-
Save levvsha/1d08ec46d11aa7a5086306e9e803c6b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const lineGenerator = d3.line() | |
| .x(d => rescaledX(d.date)) | |
| .y(d => y(d.percent)) | |
| .curve(d3.curveCardinal); | |
| /* ... */ | |
| function voronoiMouseover(d) { | |
| /* ... */ | |
| hoverDot | |
| .attr('cx', () => rescaledX(d.data.date)) | |
| .attr('cy', () => rescaledY(d.data.percent)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment