Highcharts:无法获得显示图表的示例

时间:2013-04-09 07:14:46

标签: javascript jquery highcharts

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

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

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