Hi,

I've tried this 

VisualizationUtils.loadVisualizationApi("1.1", onLoadCallback, 
BarChart.PACKAGE, "bar");

And it works.
Thank you


Le jeudi 5 mars 2015 12:10:41 UTC+1, Constantin FEIER a écrit :
>
> Hi,
>
> I am using Google visualization in a SmartClient app.
> Since 20 february 2015, charts are not showing anymore in IE11, without 
> any changes in our app.
> There is a red line with this error
> Unable to get value of the property "setImmediate" object is null or 
> undefined
> Here is a testcase with a simple piechart. 
> Without SmartClient js files, chart are showing well.
> If i add the 3 js files attached, there is no chart and the red line 
> appears   
>
>
> <!doctype html>
> <html>  <head>    
> <script type="text/javascript" src="https://www.google.com/jsapi";></script>   
>  
> <script type="text/javascript">      
>       google.load("visualization", "1", {packages:["corechart"]});   
>       google.setOnLoadCallback(drawChart);      
>       function drawChart() {        
>               var data = google.visualization.arrayToDataTable([          
>               ['Task', 'Hours per Day'], ['Work',     11], ['Eat',      2], 
> ['Commute',  2], ['Watch TV', 2], ['Sleep',    7]        
>               ]);       
>               var options = {  title: 'My Daily Activities', is3D:true  };    
>     
>               var chart = new 
> google.visualization.PieChart(document.getElementById('piechart'));        
>               chart.draw(data, options);      
>       }    
> </script>
> </head>  
> <body>
>       <div id="piechart" style="width: 900px; height: 500px;"></div> 
>                       
> <script type="text/javascript" src="smartClient/ISC_Core.js"></script>
> <script type="text/javascript" src="smartClient/ISC_Foundation.js"></script>
> <script type="text/javascript" src="smartClient/ISC_Containers.js"></script>
>
> </body>
> </html>
>
>
>
>
>

-- 
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/d/optout.

Reply via email to