What is the equivalent of d3.svg.line().interpolate('monotone')
in d3.js v4?
Asked
Active
Viewed 130 times
0

shafeequemat
- 1,002
- 2
- 17
- 22
-
In your case, you have to choose between `d3.curveMonotoneX` or `d3.curveMonotoneY`. – Gerardo Furtado Jun 06 '17 at 03:43
-
Thanks @GerardoFurtado It works fine now – shafeequemat Jun 06 '17 at 04:07