0

私は JavaScript を学んでおり、ある程度のプログラミングの知識があり、最終的には問題を解決できますが、ハイチャートの問題で立ち往生しています。

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Highcharts Example</title>

        <!-- 1. Add these JavaScript inclusions in the head of your page -->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script type="text/javascript" src="http://code.highcharts.com/highcharts.js"></script>

        <!-- 2. Add the JavaScript to initialize the chart on document ready -->
        <script type="text/javascript">
            $(document).ready(function() {
                var options = {
                    chart: {
                        renderTo: 'container',
                        type: 'line'
                    },
                    title: {
                        text: 'Betting Performance'
                    },
                    xAxis: {
                        categories: []
                    },
                    yAxis: {
                        title: {
                            text: 'Yield (%)'
                        }
                    },
                    series: []
                };

                /*
                 Load the data from the CSV file. This is the contents of the file:

                 Apples,Pears,Oranges,Bananas,Plums
                 John,8,4,6,5
                 Jane,3,4,2,3
                 Joe,86,76,79,77
                 Janet,3,16,13,15

                 */
                $.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);
                });
            });
        </script>
    </head>
    <body>
        <!-- 3. Add the container -->
        <div id="container" style="width: 1200px; height: 800px; margin: 0 auto"></div>
    </body>
</html>

今、私はこれを機能させることができ、以下のスクリーンショットを添付しました.

ここに画像の説明を入力 しかし、一番下に見えるように、「シリーズ 3」というシリーズがあります。

次は平文のCSVファイルです

,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 ,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 マイル、-100、-100、-100、-58.75、-31 ,-9.17,9.63,18.3,29.08,38.5,41.19,43.56,46.79,39.45,32.81,26.77,28.64,18.71,24.52,28.53,29.04,24.87,20.96,17.28,20.02,18.26,17.26,190. 16.2,13.29,10.52,13.25,14.04,11.44,12.97,21.4,18.81,16.33,13.95,11.67,9.48マイル29.08,38.5,41.19,43.56,46.79,39.45,32.81,26.77,48.64,18.71,24.52,28.53,29.04,24.87,20.96,17.28,28,28.02,18.27 14.04,11.44,12.97,21.4,18.81,16.33,13.95,11.67,9.48

画像でわかるように、これはチャートにうまくプロットされます。複数のシリーズの作品であり、シリーズが 1 つであることは問題ではないことを強調するために、2 つのデータ セットを作成しました。すべてのデータ ポイントは、適切な y 値を使用して番号 1 ~ 42 からプロットされました。

追加のシリーズがどこから来たのか、そしてその理由はわかりません。ハイチャートのデモをできる限りフォローしましたが、今は道に迷っています。

4

1 に答える 1

1

jack R Abbit のコメントに投稿されているように、Excel は CSV の末尾に空白を追加します。神はその理由を知っています。その空白を削除すると、問題が解決しました。助けてくれた人たちにもう一度感謝します。うまくいけば、他の誰かがこれに遭遇して助けてくれることを願っています

よろしく

マイル

于 2013-08-23T08:22:12.173 に答える