Hi,
first of all: neat work! - keep it up.
Now my issue:
We are using the charts for reporting in a tabbed interface. Basicly it looks like this:
< div id="tab1" onclick="switchTab(this)" >
< div id="chartdiv_1" >Here goes the first Chart< /div >
< /div >
< div id="tab2" onclick="switchTab(this)" >
< div id="chartdiv_2" >Here goes the second Chart< /div >
< /div >
To switch between the tabs, we change the display-attribute of the different tabs (e.g.: if we want to see tab1, we will display:block on tab1 and display:none on tab2).
So when look at the chart on tab1, switch to tab2 (look at the chart there), and switch to tab1 back, the chart is displaying a "loading ..." message, and rendering the chart again. That would be ok - if the data wouldn't been pushed from the server again.
If seen this behaviour in the following browsers: Firefox 3.5, Opera, Safari and Chrome. Only in IE6 and IE7 it worked like I would expect it (one of those scary "omg it works in IE but in all other browsers not"-moments).
Is there any way to get rid of this behavior?
Greetings,
Clemens