We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
d3.v5.js
const extent = [0, 0] const scale = scaleLinear() .domain(extent) .range([200, 0]); scale(0) // return 100
d3.v4.js
const extent = [0, 0] const scale = scaleLinear() .domain(extent) .range([200, 0]); scale(0) // return 200
So, How do I use v5 to achieve the effect of v4. Thank you.
The text was updated successfully, but these errors were encountered:
You would have to test it in your application explicitly. This change happened in #117
Sorry, something went wrong.
No branches or pull requests
d3.v5.js
d3.v4.js
So, How do I use v5 to achieve the effect of v4. Thank you.
The text was updated successfully, but these errors were encountered: