I’m using CanvasJS to render a multi-series chart. I need to plot a large number of data points along the horizontal (X) axis, and I’m concerned about performance.
Is there a recommended or maximum number of data points per series (or total) that CanvasJS can handle efficiently?
Beyond what point does performance (render speed, zooming, panning, responsiveness) start to degrade noticeably?
Are there any best practices (like data aggregation, sampling, lazy loading, etc.) to keep the chart smooth when dealing with thousands of points?
Thanks in advance!