我无法显示以下图表。下面是jQuery。我通过替换 jQuery 尝试了其他示例,它可以工作。我的所有文件都在同一个文件夹中,包括 data.csv。
$(document).ready(function () {
var options = {
chart: {
renderTo: 'container',
defaultSeriesType: 'column'
},
< ...more options here... >
};
$.get('./data.csv', function (data) {
// Split the lines
var lines = data.split('\n');
$.each(lines, function (lineNo, line) {
var items = line.split(',');
// header line containes categories
if (lineNo == 0) {
$.each(items, function (itemNo, item) {
if (itemNo > 0) options.xAxis.categories.push(item);
});
}
// the rest of the lines contain data with their name in the first position
else {
var series = {
data: []
};
$.each(items, function (itemNo, item) {
if (itemNo == 0) {
series.name = item;
} else {
series.data.push(parseFloat(item));
}
});
options.series.push(series);
}
});
var chart = new Highcharts.Chart(options);
});
});
CSV 文件如下所示:
Categories,Apples,Pears,Oranges,Bananas
John,8,4,6,5
Jane,3,4,2,3
Joe,86,76,79,77
Janet,3,16,13,15
这是我试图开始工作的例子:
http://www.highcharts.com/studies/data-from-csv.htm
编辑:我刚刚意识到图表显示在 Firefox 上。我一直在使用 Chrome。很奇怪。但是,上面的示例链接适用于两者。