Skip to content Skip to sidebar Skip to footer

Cannot Display Multiple Highcharts On A Single Page

I am trying to display 3 Highcharts-generated graphs on one page. I have loaded up the first two just fine but when I add the Javascript for the third all of them do not show. I ha

Solution 1:

you've missed } somewhere, here is what I see in firebug:

missing } after function body

edit

you haven't closed last closure, add }); at the end of code

I have also removed 2 closures and only one, see updated code: http://jsfiddle.net/bCU2E/2/

Solution 2:

Your syntax was wrong, updated; here is the correct fiddle

Post a Comment for "Cannot Display Multiple Highcharts On A Single Page"