d3 / d3-shape

Graphical primitives for visualization, such as lines and areas.
https://d3js.org/d3-shape
ISC License
2.48k stars 308 forks source link

Custom interpolators? #15

Closed mbostock closed 8 years ago

mbostock commented 8 years ago

We don’t currently have a way of passing in a custom interpolator. The problem is the old API uses string concatenation, whereas the new API streams to an output context (which may buffer to a string internally, or not).

mbostock commented 8 years ago

Fixed in 443978ec02d48a1a4dc905963003a74f52f8e98c; you can now specify your own implementation. Pretty sweet.