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
I had to change:
d3.csv("time_scale_data.csv", rowConverter, function(data) {...})
to:
d3.csv("time_scale_data.csv", rowConverter).then(function(data) {...})
to get it to work.
The text was updated successfully, but these errors were encountered:
Thanks for reporting! Yes, this is one of many things that changed with D3 v5.0. (The 2nd edition of the book addresses v4.5.0 only.)
I will leave this issue open for some future update to the book. :)
Sorry, something went wrong.
Thank you Virginia! Was hitting my head against the wall on this one. Wish I had looked at the issue log first.
scotthmurray
No branches or pull requests
I had to change:
d3.csv("time_scale_data.csv", rowConverter, function(data) {...})
to:
d3.csv("time_scale_data.csv", rowConverter).then(function(data) {...})
to get it to work.
The text was updated successfully, but these errors were encountered: