This example is the second of three in the Path Transitions tutorial; see the previous example for context.
The desired pairing of numbers for path interpolation is like this:
M x0, y0 L x1, y1 L x2, y2 L x3, y3 L xR, y4
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
M xl, y0 L x0, y1 L x1, y2 L x2, y3 L x3, y4
Where xl
is some negative value off the left side, and xr
is some positive value off the right side. This way, the first point ⟨x0,y0⟩ is interpolated to ⟨xl,y0⟩; meaning, the x-coordinate is interpolated rather than the y-coordinate, and so the path appears to slide off to the left. Likewise, the incoming point ⟨xr,y4⟩ is interpolated to ⟨x3,y4⟩.
While you could write a custom interpolator and use transition.attrTween to achieve this, a much simpler solution is to interpolate the transform attribute rather than the path. This way, the shape of the path remains static while the it translates left during the transition.
Immediately prior to the transition, the path is redrawn as follows:
M x0, y0 L x1, y1 L x2, y2 L x3, y3 L xr, y4
Then, a transform transition is applied:
translate(0,0)
↓
translate(xl,0)
This causes the path to slide left. A clip path is used so the path is not visible outside of the chart body.
Note that for charts with spline interpolation, you’ll need to crop the visible part of the line by an extra point, so that the change in tangent is not visible; see the next example.
I forked the code pen from @Atticweb and updated to v4. Everything seems to be working properly, but I'm a little unhappy with the transition of the axis text, it doesn't respect the easing (jumpy), but the ticks transition smoothly. Any ideas?
https://codepen.io/sampaioletti/pen/eREyQZ
I'm pretty new to d3, but wanted to use this same idea in a similar project that requires v4.
(sorry if you get this twice I should have posted here in the first place probably not on bjorngi's gist)