Snippet Slows Down in subsequent runs - very weird

Hi Pat,

If I understand what you’re saying is the cause, it sounds like the chart is re-rendering every time its model’s contents change. Since you’re making many sequential updates, this is causing many re-renders of the chart. Is there any way you could modify your snippet to consolidate all the row updates into an array, and bundle them into one updateRows()? In Skuid’s API documentation for updateRow() there’s a note that explains “If updating several rows within a loop, it is much more efficient to use the updateRows( ) function.”