我正在尝试使用从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.
我使用具有相同格式/布局的数据表可以正常工作。
任何帮助表示赞赏,
干杯
答案 0 :(得分:0)
我修好了。我只需要指定column
的类型为string
或number
。
示例:
cols: [
{id: '0', label: 'Country', type: 'string'},
{id: '1', label: 'Downloads', type: 'number'}
],