Hey everyone, in my app I am using 3 Tabs and in one tab I have Checklist to control a histogram an additionally I have a lot of static Pie-Charts (30 Charts) which I create with a for loop in the div. I use a callback to change the histogram if i select some values on the checklist.
The problem is, that the reaction on my click is to slow if I include all my 30 Charts on the same tab. The Pie-Charts are static and should not change by the callback/click-event. Without all the Pie-Chars the update/reaction-on-click is really fast and with all this charts, its takes several seconds to update my Figure. It seems to me, that Dash updates all the Figures on the Tab no mater which one I really update but takes the same values for the Static-Charts. At least it explains why the reaction and my Figure update takes longer if I include more Charts in same tab.
Do you have any idea how to avoid this behavior and make the update faster if i have o use a lo of components on he same tab ?
I use:
python 3.6
0.36.0 # The core dash backend
dash-html-components==0.13.5 # HTML components
dash-core-components==0.43.0 # Supercharged components
dash-table==3.1.11 # Interactive DataTable component (new!)