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