Estoy teniendo un problema parecido, utilizando el google chrome, sale un 
mensaje "unknown render type"

El jueves, 13 de febrero de 2020, 15:26:53 (UTC-3), Ilya Shulim escribió:
>
> I am experiencing an issue with displaying google charts on IE 11. Below 
> code works on Mozilla and Chrome but not on IE.
>
> <head>
>   <script src="https://www.gstatic.com/charts/loader.js";></script>
>   <script>
>     google.charts.load('current', {packages: ['corechart']});
>     google.charts.setOnLoadCallback(drawChart);
>
>     function drawChart() {
>       // Define the chart to be drawn.
>       var data = new google.visualization.DataTable();
>       data.addColumn('string', 'Element');
>       data.addColumn('number', 'Percentage');
>       data.addRows([
>         ['Nitrogen', 0.78],
>         ['Oxygen', 0.21],
>         ['Other', 0.01]
>       ]);
>
>       // Instantiate and draw the chart.
>       var chart = new 
> google.visualization.PieChart(document.getElementById('myPieChart'));
>       chart.draw(data, null);
>     }
>   </script>
> </head>
> <body>
>   <!-- Identify where the chart should be drawn. -->
>   <div id="myPieChart"/>
> </body>
>
> Can anyone suggest what could be the possible cause of this behavior? 
>
> Thanks in advance.
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/19e11126-fcc7-4a9e-8f7f-568f50eae298%40googlegroups.com.

Reply via email to