Okay, figured out the problem. When I saw there was an issue with 10,000 data points, I created an ArrayList using every tenth simulation with a modulus on the iteration variable to reduce the size. Only accidentally I used the modulus on the total spins variable not the iterating variable so I was still charting 10,000 when I thought it was 1000. Stupid mistake, I hadn't looked at the code in a while.
Anyway, now it's at 2000 data points and everything is working fine in all browsers. You can take a look here: rouletteidiot.com/ parlaysystemroulette.html FYI, all the sims are running client side and before adding the visualization I was just printing text results and it blasted through them no problem at 10,000 simulations. On Feb 6, 3:22 pm, asgallant <[email protected]> wrote: > All rendering is done client-side (there is no way around this, client-side > being the point of javascript). The API should not have any trouble with > rendering data sets with multiple thousands of points. Are you running the > simulations themselves client-side, or are you doing that server-side and > loading the results? > > If you can post your code or a link to the page so we can test it, that > would be helpful. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
