Ah interesting, thanks. But this is for pure JS development I assume.
Where would one put such a statement with GWT ? May be one needs to unjar
the gwt-visualization.jar and repackage it after. Not obvious.
Le mercredi 29 juillet 2015 12:27:57 UTC+2, Sergio Canales a écrit :
>
> I've tried to load the release candidate version, and it worked for me:
>
> google.load('visualization', '1.1',
> {'packages':['corechart','annotationchart','gauge']});
>
> El miércoles, 29 de julio de 2015, 12:22:06 (UTC+2), Sergio Canales
> escribió:
>>
>> Google Charts Stable Release is still v41, take a look at this url
>>
>> https://developers.google.com/chart/interactive/docs/release_notes
>>
>> El miércoles, 29 de julio de 2015, 10:53:11 (UTC+2), semiosys escribió:
>>>
>>> Hi there,
>>>
>>> I am still having the very same issue on IE11 (using
>>> gwt-visualization-1.1.2 + smartgwt 5.0).
>>> I have see that the (non gwt) Google Charts and Google CLosure libraries
>>> have been updated quite recently
>>> Did someone could fine a fix ?
>>>
>>> Thank you
>>> Elie
>>>
>>> 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.