Hi Steve, I added this comment (edited):
We did a lot of fixes of memory leaks in the fall of 2013. Thanks for digging up these older issues, which we will investigate and perhaps resolve. One requirement is that you call clearChart() (or clear()) on charts that you are overwriting, or no longer using. The reason for this is that there is no way to tell otherwise that no longer needed so its resources can be cleaned up. If you merely draw() the same chart with different data, you should not call clearChart(). If you are replacing your dashboard, rather than just calling draw() on it with new data, then you should call dashboard.clear() to dispose of the dashboard itself. Clearing the dashboard does not recursively clear the charts and controls in it, since you might be using them separately, so you have to clear each of the charts and controls in the dashboard yourself. Hope that helps. On Wed, Mar 5, 2014 at 9:42 AM, ne Humbug <[email protected]> wrote: > Unfortunately the memory leak issue is still happening which we were > hoping a fix would be included in this release. As a matter of urgency can > you please take a look at > https://code.google.com/p/google-visualization-api-issues/issues/detail?id=1225and > the few other links relating to the same issue. > >> > Many thanks to the team for their work thus far. > > Regards > > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to > [email protected]. > Visit this group at > http://groups.google.com/group/google-visualization-api. > For more options, visit https://groups.google.com/groups/opt_out. > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> - 978-394-1058 [email protected] <[email protected]> 5CC, Cambridge MA [email protected] <[email protected]> 9 Juniper Ridge Road, Acton MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/groups/opt_out.
