plot jQuery flot 图表未在 IE 中加载,但在 chrome 和 firefox 中运行良好。
我也包括在内excanvan.min.js
。即使它在 IE 中不起作用。请帮忙。下面是我的代码。
function drawchart()
{
var data = [];
var series = Math.floor(Math.random()*10)+1;
for( var i = 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
}
});
}