I have created a real-time graph where new data points are continuously being fed in and plotted.
Currently I am using requestAnimationFame() where I render the updated positions of the elements 30 times per second.
With many SVG elements, this can get a little slow.
What is the most efficient way to implement a continuously scrolling graph like this with SVG animations, CSS animations, or CSS transitions. (Without 3rd party libraries).
Thanks in advance.