Hmm...I'm not familiar with the method you are using to create charts, but unless I miss my guess, that is the code for embedding charts, correct?
I tested it several times, and sometimes the charts draw, and sometimes they don't. My suspicion is that one of two things is going on (maybe both): 1) There is a problem in the way the embedding code handles multiple embedded charts. Fixing this would be out of your hands, so the solution is to use javascript to build the charts instead. 2) There is a problem with the interaction between the code that hides your page subsections and the drawing of the charts. To render properly, the charts need to be drawn in a visible div (they can be hid immediately afterwards). The chart embedding code doesn't expose anything that would allow you to determine when the charts are done drawing, so you can't fire the code to hide the div's with 100% certainty that it will work properly. The solution, again, is to use javascript to build the charts. As a test case, try disabling the code that hides your page sections and see what happens. If the charts consistently draw properly, then the problem is likely #2. On Tuesday, April 24, 2012 11:20:15 AM UTC-4, Allen Fuller wrote: > > Thanks! Here's the link: > > http://www.fairus.org/states/alabama > > > On Tuesday, April 24, 2012 8:04:28 AM UTC-6, asgallant wrote: >> >> Post your code or a link to the page and I'll help you debug. >> >> On Monday, April 23, 2012 6:54:48 PM UTC-4, Allen Fuller wrote: >>> >>> I'm having the same problem. We have several charts on one page and the >>> last few do not load in FF11. Everything else works just fine. >>> >>> When I looked at the Error Console, I see the error "the container is >>> null or not defined" >>> >>> Any suggestions would be really appreciated! >>> >>> >>> On Monday, April 23, 2012 10:59:28 AM UTC-6, asgallant wrote: >>>> >>>> Open the Firefox developer console (ctrl+shft+J) and reload the page. >>>> You should see some sort of error there. >>>> >>>> If you post your code or a link to the page, we can help you debug. >>>> >>>> On Monday, April 23, 2012 11:16:24 AM UTC-4, Phanibhushan Reddy wrote: >>>>> >>>>> I have a simple line chart that works fine with IE but fails to load >>>>> in Firefox 11. Can someone help as to what is the issue and possible >>>>> trouble shooting steps? >>>>> >>>>> Thanks, >>>> >>>> -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/_BevnXXU7PEJ. 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.
