plot jQuery flot chart is not displaying in IE -


plot jquery flot chart not loading in ie, working fine in chrome , in firefox.

i have included excanvan.min.js also. though not working in ie. please help. below code.

function drawchart() {   var data = [];   var series = math.floor(math.random()*10)+1;   for( var = 0; i<series; i++)   {      data[i] = { label: "series"+(i+1), data: math.floor(math.random()*100)+1 }   }    $("#chart1").height($("#pan1").height());    $.plot($("#chart1"), data,    {     series: {       pie: {          show: true,         radius: 0.8,         label: {           show: true,           radius: 2/3,           formatter: function(label, series){             return label+'<br/>'+math.round(series.percent)+'%';           },           threshold: 0.1         }       }     },     legend: {       show: true     }   }); } 


Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -