如何更改离散条颜色onmouseover - angular-nvd3

时间:2016-09-11 07:26:20

标签: angularjs d3.js nvd3.js angular-nvd3

我想为视图与日期创建一个图表。所以我使用了angular-nvd3插件。图表显示正常。我对所有离散条形元素都有相同的颜色。我需要在moseover事件上更改特定栏的颜色。我尝试了以下方法。

(1) d3.select(this).atrr('rect').style('fill':'red');
(2) $scope.options.chart[e.index].color = "#222";

但他们没有工作。有没有办法做到这一点。

$scope.options = {
  chart: {
  type: 'discreteBarChart',
  height: 450,
  x: function(d){return d.label;},
  y: function(d){return d.value;},
  showValues: false,
  transitionDuration: 500,
  xAxis: {
    axisLabel: 'Month'
  },
  yAxis: {
            axisLabel: 'Views',
            axisLabelDistance: 10,
            tickFormat: function (d) {
                    return d3.format('k')(d);
            }
        },
  color: ['#59ade8'],
  dispatch: {
              tooltipShow: function(e){ },
              tooltipHide: function(e){},
              beforeUpdate: function(e){}
            },
            discretebar: {
              dispatch: {
                //chartClick: function(e) {console.log("! chart Click !")},
                elementClick: function(e) {   
                    selected_element = e;
                    setVisibility();
                 },
                elementMouseout: function(e) {},
                elementMouseover: function(e) {
                    d3.select(e).color = '#222'
                }
              }
            }
  }
  }

  $scope.data = [{
  values: [{
    "label" : "10" ,
    "value" : 50
  },{
    "label" : "11" ,
    "value" : 20
  },{
    "label" : "13" ,
    "value" : 60
  },{
    "label" : "14" ,
    "value" : 90
  },{
    "label" : "15" ,
    "value" : 40
  },{
    "label" : "16" ,
    "value" : 50
  },{
    "label" : "17" ,
    "value" : 30
  }]
}];

1 个答案:

答案 0 :(得分:0)

我通过使用$ scope.apply()函数解决了这个问题。这是我的一天。我按

更改每个条形颜色
$scope.$apply(function(){
  $scope.data[0].values[e.index].color = '#59ade8';
});