The current implementation for the scatter chart uses SVG which can be very slow when the data gets big (you can start noticing this with datasets with thousands of points), so I changed the implementation to use the Canvas API which is very fast compared to the SVG
The current implementation for the scatter chart uses SVG which can be very slow when the data gets big (you can start noticing this with datasets with thousands of points), so I changed the implementation to use the Canvas API which is very fast compared to the SVG
Performance Using SVG
Performance Using Canvas