Created
June 21, 2018 09:00
-
-
Save levvsha/e193d7d535d0042260d8c54c532d6b08 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
| function voronoiMouseover(d) { | |
| legendsDate.text(timeFormatter(d.data.date)); | |
| legendsValues.text(dataItem => { | |
| const value = percentsByDate[d.data.date][dataItem]; | |
| return value ? value + '%' : 'N.A.'; | |
| }); | |
| d3.select(`#region-${ d.data.regionId }`).classed('region-hover', true); | |
| 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