jquery csv库提供了将csv字符串转换为
我正试图从CSV输入创建一个Google图表。
这是我当前的代码(在教程中找到),不幸的是它不起作用——结果是一个空图表:
<!DOCTYPE html>
<html>
<head>
<title>Google Chart Example</title>
<script src="https://www.google.com/jsapi"></script>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="jquery.csv-0.71.min.js"></script>
<script type='text/javascript'>
// wait till the DOM is loaded
$(function() {
// grab the CSV
$.get("post.csv", function(csvString) {
// display the contents of the CSV
$("#chart").html(csvString);
});
});
// load the visualization library from Google and set a listener
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
// grab the CSV
$.get("miez.csv", function(csvString) {
// transform the CSV string into a 2-dimensional array
var arrayData = $.csv.toArrays(csvString, {onParseValue: $.csv.hooks.castToScalar});
// this new DataTable object holds all the data
var data = new google.visualization.arrayToDataTable(arrayData);
// this view can select a subset of the data at a time
var view = new google.visualization.DataView(data);
view.setColumns([0,1]);
var options = {
title: "Weight tracking",
hAxis: {title: data.getColumnLabel(0), minValue: data.getColumnRange(0).min, maxValue: data.getColumnRange(0).max},
vAxis: {title: data.getColumnLabel(1), minValue: data.getColumnRange(1).min, maxValue: data.getColumnRange(1).max},
legend: 'none'
};
var chart = new google.visualization.ScatterChart(document.getElementById('chart'));
chart.draw(view, options);
});
}
</script>
</head>
<body>
<div id="chart">
</div>
</body>
</html>
CSV非常简单,只有日期和重量。
Date,Weight
2014-10-25 09:58:30 +0000,86.025
2014-10-25 10:14:38 +0000,88.44836
2014-10-25 13:08:13 +0000,84.04703
google.visualization.arrayToDataTable()
使用的数组的能力(此处为其示例)。要实现这一点,请将jquery.csv.js添加到服务器中(在下面的示例中,我假设它与HTML位于同一文件夹中),并在<head>
中链接到它。以下是一个简单的脚本,您可以将其添加到<head>
中以开始使用。我假设是散点图,但这个过程适用于这里的任何图表。在其中呈现图表的div具有id="chart"
。
// load the visualization library from Google and set a listener
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
// this has to be a global function
function drawChart() {
// grab the CSV
$.get("example.csv", function(csvString) {
// transform the CSV string into a 2-dimensional array
var arrayData = $.csv.toArrays(csvString, {onParseValue: $.csv.hooks.castToScalar});
// this new DataTable object holds all the data
var data = new google.visualization.arrayToDataTable(arrayData);
// this view can select a subset of the data at a time
var view = new google.visualization.DataView(data);
view.setColumns([0,1]);
// set chart options
var options = {
title: "A Chart from a CSV!",
hAxis: {title: data.getColumnLabel(0), minValue: data.getColumnRange(0).min, maxValue: data.getColumnRange(0).max},
vAxis: {title: data.getColumnLabel(1), minValue: data.getColumnRange(1).min, maxValue: data.getColumnRange(1).max},
legend: 'none'
};
// create the chart object and draw it
var chart = new google.visualization.ScatterChart(document.getElementById('chart'));
chart.draw(view, options);
});
}
我认为您的部分问题可能是您使用的日期格式。根据文档,arrayToDataTable
无法处理DateTime格式;所有数据都必须是数字。
他们建议的解决方案是创建一个空表,并使用addColumn()
手动添加数据。
我可以做的快速测试就是将你的csv文件更改为:
Date,Weight
0,86.025
1,88.44836
3,84.04703
如果你得到一张图表,只是没有日期,你就知道这就是问题所在。