I've confirmed that the chart seems to work in IE9, but won't work with IE8
standards or in IE8 compatibility mode. Please ensure that neither of these
are set for you. If you find that your chart doesn't work in IE9, please
take a look at this jsfiddle <http://jsfiddle.net/twf7d0mn/> and post back
if it also doesn't work in IE9 and I will investigate further.

On Wed Oct 29 2014 at 9:54:23 AM Sergey Grabkovsky <[email protected]>
wrote:

> Hi,
>
> We are not supporting IE8 with the new Material charts. However, things
> should work for IE9. I'm in the process of testing on IE9. Could it be that
> your IE9 is in IE8 compatibility mode? I can imagine that that might cause
> these kinds of issues.
>
> On Wed Oct 29 2014 at 6:26:48 AM 유제근 <[email protected]> wrote:
>
>> SCRIPT438: Object does not support 'createElementNS' property or method
>>
>> This problem occurs while using the Google Chart.
>>
>> Chrome, FF, Safari in no error.
>> An error files when you use IE.
>> I do not know what it means if createElementNS.
>>
>> Computing environment are wearing IE9.
>> An error files when you use IE8, IE9.
>> IE are not sure why this is impossible using
>>
>>
>> <script type="text/javascript">
>> google.load("visualization", "1.1", {packages: ["bar"]});
>> $(document).ready(function() {
>> $.ajax({
>> url : '/lms/class/report/prof/doReportStatsList.dunet',
>> data : {
>> 'report_no' : $('#report_no').val()
>> },
>> type: "post",
>> dataType: "json",
>> success: function(transport){
>> var statslist = transport.reportStatslist;
>> var raw_data = new Array();
>> var area = new Array();
>> var gradeArea = ${report_data.allot_scr} / 10;
>>
>> var a1, a2;
>> var cnt=0;
>> var temp1 = "[['grade', 'student', { role: 'style' }, { role:
>> 'annotation' }]";
>> var temp = "";
>>  for(var i=0; i<10; i++) {
>> if(i==0) {
>> a1 = 0;
>> a2 = a1 + gradeArea;
>> } else if(gradeArea < 0 || gradeArea == 1) {
>> a1 = a2 + 0.1;
>> a2 = a1 + (gradeArea - 0.1);
>> } else {
>> a1 = a2 + 1;
>> a2 = a1 + (gradeArea -1);
>> }
>> for(var j=0; j<statslist.length; j++) {
>> if(a1<=parseInt(statslist[j].report_scr_final) &&
>> a2>=parseInt(statslist[j].report_scr_final)) {
>> cnt++;
>> }
>> raw_data[i] = cnt;
>> }
>> cnt = 0;
>> area[i] = a1 + "~" + a2;
>> if(0<raw_data[i]) {
>> temp = temp + "," + "['"+area[i]+"',"+raw_data[i]+
>> ",'blue','"+raw_data[i]+"']";
>> } else {
>> temp = temp + "," + "['"+area[i]+"', "+0+", 'orange', '']";
>> }
>> }
>> temp1=temp1+temp+"]";
>> temp1=eval(temp1);
>> drawVisualization(temp1);
>> }
>> });
>> });
>>  function drawVisualization(temp1) {
>>  var data = google.visualization.arrayToDataTable(temp1);
>> var options = {
>>           chart: {
>>             title: '테스트 소스',
>>           }
>>         };
>>       var chart = new google.charts.Bar(document.
>> getElementById('visualization'));
>>       chart.draw(data, options);
>> }
>> </script>
>>
>> Also use the same examples that come up on google api is createElementsNS
>> problem arises.
>> This problem is driving me crazy.
>> Help me plz...... Fuck!!!!!!!!!
>>
>> --
>> 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 google-visualization-api@
>> googlegroups.com.
>> Visit this group at http://groups.google.com/
>> group/google-visualization-api.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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