Hello,
First off all, thank you for your great lib : I try to make my way thru Google Chart for days, JSXGraph just rocks !
I have a issue while using JXG.JSXGraph.freeBoard(board).
I made a (very ?) heavy graph : (2 Axes, Ticks, Texts, 1 Polygon of 360 points and 1 Polygon of 820 points.

The first time the graph is created, it's all good.
But the next time, the browser freeze (I mean it keep working) on JXG.JSXGraph.freeBoard(board).
The code I use looks like :
var b; // global variable that holds the JSXG board
function doTheGraphStuff(){
if(b != undefined){
JXG.JSXGraph.freeBoard(b);
}
JXG.Options.precision.hasPoint = 0;
b = JXG.JSXGraph.initBoard('chart_div', {boundingbox: [-10, 90, 380, -10], axis:false, grid:false, showCopyright:false, showNavigation:false});
/* create axes, ticks, text and polygons */
[...]
}
It seems to me that the free method has too much to do because of my heavy graph.
The question is : what is the good way to reset or re-create a graph held by the same div ?