3

angular-nvd3 を使用して単純な折れ線グラフを構成しようとすると、深い nvd3 エラーが発生します。

与えられたプランカーの例を編集しましたが、オプションの交換のみが機能するため、データの形式が間違っている可能性があります。

誤動作している plunkr は次のとおりです: http://plnkr.co/edit/fznNKBw6hwNYavfZ3Nvi?p=preview

オプション:

  $scope.options = {
    "chart": {
      "type": "lineChart",
      "height": 450,
      "useInteractiveGuideline": true,
      "dispatch": {},
      "xAxis": {
        "axisLabel": "Months"
      },
      "yAxis": {
        "axisLabel": "Team size",
      }
    }
  };

データ:

$scope.data = {
    "key": "Monthly",
    "values": [{
      "x": 0,
      "y": 2
    }, {
      "x": 1,
      "y": 6
    }, {
      "x": 2,
      "y": 10
    }]
  }

問題を特定できる人はいますか?

4

2 に答える 2

3

scope.data を nvd3 サイトのサンプルに置き換えました。

      $scope.data = sinAndCos();

    /*Random Data Generator */
    function sinAndCos() {
        var sin = [],sin2 = [],
            cos = [];

        //Data is represented as an array of {x,y} pairs.
        for (var i = 0; i < 100; i++) {
            sin.push({x: i, y: Math.sin(i/10)});
            sin2.push({x: i, y: i % 10 == 5 ? null : Math.sin(i/10) *0.25 + 0.5});
            cos.push({x: i, y: .5 * Math.cos(i/10+ 2) + Math.random() / 10});
        }

        //Line chart data should be sent as an array of series objects.
        return [
            {
                values: sin,      //values - represents the array of {x,y} data points
                key: 'Sine Wave', //key  - the name of the series.
                color: '#ff7f0e'  //color - optional: choose your own line color.
            },
            {
                values: cos,
                key: 'Cosine Wave',
                color: '#2ca02c'
            },
            {
                values: sin2,
                key: 'Another sine wave',
                color: '#7777ff',
                area: true      //area - set to true if you want this line to turn into a filled area chart.
            }
        ];
    };

そして、それはこのplunkrで機能します:

プランカー

したがって、これは、実行しようとしているデータ コンポーネントに問題があることを意味します。データ要素を追加/削除して実験し、それが役立つかどうかを確認してください。

編集: データオブジェクトの形式が正しくありません:次の形式である必要があります:

  $scope.data = [{
        "key" : "Monthly",
        values : [{
                "x" : 1,
                "y" : 6,
                "color" : 'blue'
            }, {
                "x" : 2,
                "y" : 10,
                "color" : 'red'
            }
        ]
    }
  ];  

したがって、ドキュメントから、データオブジェクトは配列を期待し、値は値オブジェクトのさらなる配列です:

クイックスタート 1/3 ウェイダウンページ

于 2016-05-11T13:47:44.577 に答える
0
var app = angular.module('plunker', ['nvd3']);

app.controller('MainCtrl', function($scope) {
    $scope.options = {
        chart: {
            type: "lineChart",
            height: 450,
            useInteractiveGuideline: true,
            dispatch: {},
            xAxis: {
                axisLabel: "Months"
            },
            yAxis: {
                axisLabel: "Team size",
            }
        }
    };


    $scope.data = [{
        key: "Monthly",
        values: [{
            x: 0,
            y: 2
        },{
            x: 1,
            y: 6
       }, {
            x: 2,
            y: 10
       }],

    }]
    console.log($scope.options, $scope.data)
});

これは、使用するデータの実際の例です(プランカーで)

于 2016-05-14T13:57:17.827 に答える