I badly want to optimise my dash application as it takes 40-50sec for rendering the graphs in UI. Actually i have huge data points with multiple traces. So how can i reduce the slowness of my application?
Hey @Yogeshvar, impossible to tell without knowing more details. But:
This is usually related to plotly rather than dash. Keep in mind that the full interactivity of the graphs comes with a price.
Can i know what details you need further?
Are you using plotly?
Do you need interactive graphs?
How do you create the graphs?
What takes time, the creation of the graph or the visualization?
Are you using clientside callbacks?
Do you update the graph with callbacks?
How many data points do you have?
How many graphs do you have?
Do you load all graphs at the same time (if you have more than one)?
Didi you try generating the graphs outside dash?
…
Unfortunately your question is too general.