PHP& Google Graphs未在ipad上显示

时间:2014-10-06 17:06:09

标签: php ios ipad

任何帮助将不胜感激。

我没有ipad来测试我的代码,但代码适用于计算机和Android设备。当在ipad上执行相同的代码时,不会显示任何内容。 任何帮助,将不胜感激。 谢谢!

function drawChart(object, type) {
  // Create our data table out of JSON data loaded from server.
  var data = new google.visualization.DataTable(object);
  var options = {
      title: type,          
       //vAxis: {title: 'Dollars'},
      //hAxis: {title: "Week"},
      is3D: 'true',
      width: 1200,
      height: 500,
      isStacked:true
    };  
  var chart = new google.visualization.ColumnChart(document.getElementById('graph'));
  chart.draw(data, options);
}

0 个答案:

没有答案