我正在尝试使用here的Google柱形图示例。
这是我的尝试:http://jsfiddle.net/dwNE4/ (注意:这给我带来了一些麻烦)
以下是小提琴的内容:
<script src="http://www.google.com/jsapi"></script>
google.load('visualization', '1', {packages: ['corechart']});
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Year', 'Austria', 'Belgium', 'Czech Republic', 'Finland', 'France', 'Germany'],
['2003', 1336060, 3817614, 974066, 1104797, 6651824, 15727003],
['2004', 1538156, 3968305, 928875, 1151983, 5940129, 17356071],
['2005', 1576579, 4063225, 1063414, 1156441, 5714009, 16716049],
['2006', 1600652, 4604684, 940478, 1167979, 6190532, 18542843],
['2007', 1968113, 4013653, 1037079, 1207029, 6420270, 19564053],
['2008', 1901067, 6792087, 1037327, 1284795, 6240921, 19830493]
]);
// Create and draw the visualization.
new google.visualization.ColumnChart(document.getElementById('visualization')).
draw(data,
{title:"Yearly Coffee Consumption by Country",
width:600, height:400,
hAxis: {title: "Year"}}
);
}
google.setOnLoadCallback(drawVisualization);
答案 0 :(得分:6)
我无法让你的小提琴链接加载,但javascript工作正常:http://jsfiddle.net/asgallant/7wYP2/
让Visualization API处理jsfiddle需要做一些事情:
我上面发布的小提琴链接包含所有这些调整,因此您可以将其作为开发/测试/实验的基础。