0

我无法显示以下图表。下面是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。很奇怪。但是,上面的示例链接适用于两者。

4

2 回答 2

1

在 Chrome 中,您不能使用 AJAX 来获取本地文件。如果您想做这样的事情,请使用 XAMPP 或 WAMP 创建本地服务器。Firefox 没有这样的限制。

于 2013-04-10T10:40:25.373 回答
0

我能够将此 Chrome 开关用作临时修复程序以允许使用本地文件:--allow-file-access-from-files

于 2013-04-18T22:14:57.493 回答