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
The g.select(".domain").remove() pattern here is frequent:
g.select(".domain").remove()
svg.append("g") .attr("transform", `translate(${marginLeft},0)`) .call(yAxis) .call(g => g.select(".domain").remove())
It’d be nice if we could prevent the axis from creating that in the first place, especially for transitions.
The text was updated successfully, but these errors were encountered:
It is frequent indeed. I do this all the time. An option to disable it would be very nice!
Sorry, something went wrong.
No branches or pull requests
The
g.select(".domain").remove()
pattern here is frequent:It’d be nice if we could prevent the axis from creating that in the first place, especially for transitions.
The text was updated successfully, but these errors were encountered: