I'm using the developer tools within IE to test and when I set Document Mode to IE 8 standards or below, that is where I am seeing the issues. Are you using the actual version IE 8? If so that's comforting...
Thanks for the quick reply. On Monday, 16 December 2013 16:49:03 UTC-5, asgallant wrote: > > I viewed that page in IE8 with no problems. > > On Monday, December 16, 2013 3:06:57 PM UTC-5, Michael Ketelaars wrote: >> >> I'm having a similar issue where charts aren't showing up on IE 7 or 8 >> but work on all other browsers: >> >> https://www.libro.ca/Community/Media/News/20131209LibroShares.aspx >> >> <!--Load the AJAX API--> >> <script type="text/javascript" src="https://www.google.com/jsapi >> "></script> >> <script type="text/javascript"> >> >> // Load the Visualization API and the piechart package. >> google.load('visualization', '1.0', {'packages':['corechart']}); >> >> // Set a callback to run when the Google Visualization API is >> loaded. >> google.setOnLoadCallback(drawChart); >> >> // Callback that creates and populates a data table, >> // instantiates the pie chart, passes in the data and >> // draws it. >> function drawChart() { >> >> // Create the data table. >> var data = new google.visualization.DataTable(); >> data.addColumn('string', 'Topping'); >> data.addColumn('number', 'Slices'); >> data.addRows([ >> >> ['$984,000 returned to owners through Class B Investment Share >> dividends', 984], >> ['$3.70 million returned to owners through Class A Profit Share >> distribution and dividends', 3700], >> ['$511,000 added to the community investment fund', 511] , >> ['$6.40 million added to reserve', 6400], >> ['$812,000 paid in income taxes', 812] >> >> ]); >> >> var formatter = new google.visualization.NumberFormat({prefix: '$', >> fractionDigits:'0'}); >> formatter.format(data, 1); // Apply formatter to second column >> >> >> // Set chart options >> var options = { >> 'title': 'How Libro Shared 2013 Profit ($1,000s)', >> 'titleTextStyle': {color: '#444', fontName: 'DIN-Light', fontSize: '20'}, >> 'legend':{position: 'left', textStyle: {fontSize: 14, color: '#444'}}, >> 'chartArea':{left:0,top:50, width:"100%",height:"100%"}, >> 'width':750, >> 'height':350, >> 'pieHole': 0.4, >> 'tooltip':{textStyle: {fontSize: 14}, showColorCode: true}, >> 'is3D':'false', >> 'pieSliceText':'percentage', >> 'slices':{0: {color: '#5B92AD'}, 1: {color: '#006858'}, 2: {color: >> '#F69053'}, 3: {color: '#54BCEB'}, 4: {color: '#5C9641'}}, >> }; >> >> >> // Instantiate and draw our chart, passing in some options. >> var chart = new >> google.visualization.PieChart(document.getElementById('chart_div')); >> chart.draw(data, options); >> } >> </script> >> >> >> On Monday, 16 December 2013 09:55:58 UTC-5, asgallant wrote: >>> >>> Danilia, could you post code that replicates the problem? >>> >>> On Monday, December 16, 2013 7:10:02 AM UTC-5, Danila Mouzytchenko wrote: >>>> >>>> Hi Martin, >>>> >>>> Did you figure out what your problem was? I am experiencing the same >>>> problem right now and trying to find a solution to the same SCRIPT70: >>>> Permission denied on google visualization. Can you give any hints? >>>> >>>> Best regards >>>> Danila >>>> >>>> On Saturday, 2 March 2013 17:41:42 UTC+1, Martin Thoresen wrote: >>>>> >>>>> Hi, >>>>> >>>>> I guess the easiest would be a link to the site: >>>>> www.tcec-chess.net/live.php >>>>> >>>>> The 4 graphs are located on the right side of the layout. >>>>> >>>>> Let me know if you need more info. >>>>> >>>>> Best, >>>>> Martin >>>>> >>>>> On Saturday, March 2, 2013 4:59:52 PM UTC+1, asgallant wrote: >>>>>> >>>>>> Can you post code which replicates the problem or a link to the site? >>>>>> >>>>>> On Saturday, March 2, 2013 4:02:01 AM UTC-5, [email protected]: >>>>>>> >>>>>>> Hello, >>>>>>> >>>>>>> I have a peculiar problem that I don't know the root cause of. I am >>>>>>> drawing corecharts with data sent from a Javascript file. >>>>>>> Using the dev. tools for Internet Explorer, I can see that the page >>>>>>> breaks at this code snippet: >>>>>>> >>>>>>> return this.pn[Hb](a) >>>>>>> >>>>>>> With this message: >>>>>>> SCRIPT70: Permission denied >>>>>>> format+no,default,corechart.I.js, line 491 character 441 >>>>>>> >>>>>>> It works fine with IE9 and later, and other browsers. I am not using >>>>>>> IE7/IE8 myself, but was made aware of the problem by a visitor of my >>>>>>> site >>>>>>> saying that he couldn't view the page using these browsers. >>>>>>> Also, I couldn't really find any info on whether these old browsers >>>>>>> are supported by the Visualization API or not. >>>>>>> >>>>>>> I have tried both 1.0 and 1.1 of the API, same result with both. >>>>>>> >>>>>>> Any input would be most appreciated. >>>>>>> >>>>>>> Best, >>>>>>> Martin >>>>>>> >>>>>> -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/groups/opt_out.
