@denis
To remove the axis path/line during a transition in d3.js, you can simply select the axis element and set its display property to "none" during the transition. Here's an example code snippet:
1 2 3 4 5 6 7 |
// Select the x axis element var xAxis = d3.select(".x.axis"); // Start a transition xAxis.transition() .duration(1000) // Set duration of transition .style("display", "none"); // Set display property to "none" to hide the axis path/line |
This code will hide the x-axis path/line during the transition. You can do the same for the y-axis or any other axis by selecting the corresponding axis element and setting its display property to "none" during the transition.