SeanSobey / ChartjsNodeCanvas

A node renderer for Chart.js using canvas.
MIT License
228 stars 70 forks source link

Question: How do I generate multiple charts with different sizes? #137

Open sl5035 opened 10 months ago

sl5035 commented 10 months ago

Our team is trying to generate around a million charts with different random sizes. Generating this many canvases with each different sizes seems to be too much for the computer's memory. Is there a way to generate millions of charts with different sizes without causing a memory issue?

victorekpo commented 10 months ago

Maybe you could do a deployment with multiple containers that all render to one source, then you load the data from your application?

sharq88 commented 9 months ago

@sl5035 #138 might be interesting to your use-case?

sl5035 commented 8 months ago

@victorekpo , @sharq88 Got it, thanks!