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