Florian Ledermann
Florian Ledermann
I can confirm this, but it doesn't seem to depend on even adding `.hoverInfo()` on my machine. I had an idea for a fix, unfortunately it didn't work, so I...
Yes, I know, this has something to do with dynamically generated elements. I hope I have more time to look into this after the FOSSGIS conference next week.
SVG legend code has been removed in 86bcf89f4a0260eb5612f6aaa6bffd726b6126b1 and can be retrieved from there
See also: https://stat.ethz.ch/R-manual/R-devel/library/base/html/pretty.html
TODO: investigate if D3 v4 offers improvements in this respect.
Yes, the quantile scale is not supported in the current architecture, as it needs to be fed the actual data population to make it work, [as far as I understand](https://github.com/d3/d3-3.x-api-reference/blob/master/Quantitative-Scales.md#quantile-scales)....
We should probably use tape for this https://medium.com/javascript-scene/why-i-use-tape-instead-of-mocha-so-should-you-6aa105d8eaf4
This patch breaks functions that redefine themselves. Simple test case: function _test() { _test = function() { return "A"; } return _test(); } var result = _test(); With your patch...
This is really weird and I do not fully understand it, but it seems that modern JS engines have trouble redefining *named* functions. I am not set up to provide...
Has this been fixed for point buffers at some point? (no pun intended :smile: ) I am seeing a correct circular buffer using the latest release, but all of the...