情节jQuery flot chart没有在IE中显示

时间:2013-05-20 12:24:59

标签: jquery charts 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
    }
  });
}

0 个答案:

没有答案