d3 / d3-hexbin

Group two-dimensional points into hexagonal bins.
https://observablehq.com/collection/@d3/d3-hexbin
BSD 3-Clause "New" or "Revised" License
240 stars 34 forks source link

implicit dependency on d3 #2

Closed MoritzStefaner closed 8 years ago

MoritzStefaner commented 8 years ago

Line 43 hexbin.js: use of "d3.values" lets to an error if d3.js is not present, is there any equivalent in a smaller d3 module?

ghost commented 8 years ago

Hey @MoritzStefaner, great catch! This accidentally got left behind as I was porting the package over.

I think it has been fixed now as values is part of the d3-array package, but I am leaving this issue open.

If you could confirm that would be awesome! Thanks :)

MoritzStefaner commented 8 years ago

Yes, perfect! That does it. Thanks for the quick reply.