Hi,
Thought I would post this code...
Even with something as simple as this...
<html>
<head>
<title>Example Charting</title>
<script src="fusionCharts/fusionCharts.js"></script>
</head>
<body>
<div id="piechartdiv" align="center">Loading bar chart...</div>
<div id="piechartdiv2" align="center">Loading bar chart...</div>
</body>
<script>
var myPieChart = new FusionCharts("fusionCharts/Column3d.swf", "myPieChartId", "600", "300", "0", "1");
myPieChart.setDataXML("<chart></chart>");
myPieChart.render("piechartdiv")
var myNumbersPieChart = new FusionCharts("fusionCharts/MSColumn3d.swf", "myNumbersPieChartId", "600", "300", "0", "1");
myNumbersPieChart.setDataXML("<chart></chart>");
myNumbersPieChart.render("piechartdiv2")
</script>
</html>
... I receive the error. Again to clarify, the page loads the first time just fine. However, any "unload" event (refreshing window, closing window, going to a different site, etc) will fire the "out of memory at line: xx" error. And this is only when both registerWithJs flags are set to "1". If one is set to "1" and the other is set to "0", I will not receive this error.
thanks!
Bobby