I've just recently upgrade from 3.11.x to 3.15.2 and it solved a "massive" memory leak, so thanks. However, when I try to clone() a chart now, either by the charts Id or through it's variable name, it's coming back with no data to display. Code looks something like this:
<snip>
if (FusionCharts(chartid)) {
//var newPanel = FusionCharts(chartid).clone();
var newPanel = charts[panel].clone();
newPanel.render('fullscreen')
newPanel.resizeTo(width, height);
}
<snip>
The array charts[panel] holds the chart object, but you can see the line above the clode, which was the way I was cloning it before upgrading. Tried both way and nada.
Thanks,
TheWitness