What is the data set size-limit of Plotly Dash?

Thank you in advance for taking the time to respond!

I have a data set that is 100 million rows big. This takes a long time to render in the graph.

What is the data set size-limit of Plotly Dash? If the size of the data is not the problem, what might be causing it to render so slowly?

Thanks!

1 Like

I’m not using python dash but have some context for python js.

Depends on what chart visualization you are using. I was using the bar chart viz modded to be a gantt chart / timeline bar chart visualization and 400,000 data points took plotly forever to load.

But if you are using a scatter plot, you can use scattergl to take advantage of the computer’s gpu.

I have also now switched to D3FC to use WebGL. I would imagine you could somehow weave in D3FC into a dash application but that might be complex and D3FC is already complex if you want to do big data.

Here are some resources: