2

我正在尝试使用从 mysql 检索并在 PHP 中解析的一组数据生成 GeoChart。但是,我很确定错误在于我的 JavaScript。我已经简化了数据以使其更易于理解。

这是我的 JavaScript:

// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['geochart']});

// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);

// Callback that creates and populates a data table,
// instantiates the geo chart, passes in the data and
// draws it.

function drawChart() {

// Create the data table.
var data = new google.visualization.DataTable(
{
    cols: [
      {id: '0', label: 'Country'},
      {id: '1', label: 'Downloads'}
     ],
    rows: [
      {c:[{v: 'GB'}, {v: 166020}]}
     ]      
 }
);

// Set chart options
var options = {
    title:'Downloads in Last 30 Days',
    width:900,
    height:700,                 
};

// Create and draw the visualization.
visualization = new google.visualization.GeoChart(document.getElementById('chart_div1'));
visualization.draw(data, options);

}

在页面中,我只收到红色文字,上面写着:

Incompatible data table: Error: Unknown address type.

我有其他图表使用具有相同格式/布局的数据表工作正常。

任何帮助表示赞赏,

干杯

4

1 回答 1

0

我修好了它。我只需要指定columnwas astring或 a的类型number

例子:

cols: [
  {id: '0', label: 'Country', type: 'string'},
  {id: '1', label: 'Downloads', type: 'number'}
],
于 2012-08-21T15:07:18.233 回答