0

我现在尝试了几种方法。

方法一

我有一个从服务器加载数据的方法。这是在我的控制器中:

$scope.loadResults = function() {
  var url = "MY URL";
  $http.get(url).success(
    function(data, status, headers, config) {
      var tempResults=[];
      for (var i = 0; i < data.length; i++) {
      tempResults.push({date: data[i].date, p: data[i].p, result: data[i].result});
      }
      $scope.results = tempResults;
      $scope.drawChart(); //THIS IS THE METHOD I WANT TO RUN (this is approach number #1)
    }

    );
};

这是我的绘制图表方法(也在控制器中):

$scope.drawChart = function(){
    var r = Raphael("pie");
    var tempTypeDistribution = [];
    for (var j = 0; j < 7; j++) {
      tempTypeDistribution.push($scope.typeCount(j));
    }
    $scope.typeDistribution=tempTypeDistribution;
    if($scope.typePie){
        $scope.typePie.clear();
    }
    $scope.typePie = r.piechart(120, 120, 90, $scope.typeDistribution,
    {
      legend: ["%% - A", "%% - B", "%% - C", "%% - D", "%% - E", "%% - F", "%% - G"],
      legendpos: "east"
    }
    );

  };

这不起作用。图表已绘制但有错误。添加$scope.$apply();会出现此错误:Error: $digest already in progress添加 safeApply 不会做任何事情。

方法二

在我的 directives.js 中,我创建了这个观察者results

App.directive('chart', function(){
  return{
    restrict: 'E',
    link: function(scope, elem, attrs){
      var data = scope[attrs.ngModel];

      scope.$watch('results', function(v){
        var r = Raphael("pie");
        var tempTypeDistribution = [];
        for (var j = 0; j < 7; j++) {
          tempTypeDistribution.push(scope.typeCount(j));
        }
        if(scope.typePie){
            scope.typePie.clear();
        }
        scope.typePie = r.piechart(120, 120, 90, tempTypeDistribution,
        {
          {
          legend: ["%% - A", "%% - B", "%% - C", "%% - D", "%% - E", "%% - F", "%% - G"],
          legendpos: "east"
          }
        });
        scope.$apply();
      });
}
};
});

同样,这不起作用。图表已绘制但有错误。添加scope.$apply();会出现此错误:Error: $digest already in progress添加 safeApply 不会做任何事情。

方法 3

我在视图中创建了一个按钮:

 <div id="pie">
         <chart ng-model='data'> </chart>
 </div>
<button class="btn btn-success" type="submit" ng-click="drawChart()" tabindex="3">draw</button>

当我点击它时,图表会完美地绘制出来,完全符合我想要的绘制方式。但我希望图表在“结果”更改时自动重绘。所以我应该使用指令,但显然它不起作用。任何人都可以帮忙吗?

4

1 回答 1

0

似乎问题是由隐藏输出div时graphael的行为引起的:

http://www.shanison.com/2010/07/18/raphael-pie-chart-legend-stacked-line-problem/

于 2013-06-02T06:10:13.067 回答