如何在angular-chart.js中为每个条设置不同的颜色?

时间:2015-05-02 08:13:00

标签: javascript angularjs charts bar-chart

我查看了How to change colours for Angular-Chart.js,但它与整个(数据集)的颜色有关,而不是特定的栏。

我正在寻找的是将Different color for each bar in a bar chart; ChartJS应用于Angular的方法。

所以,我有条形图:

<canvas id="locationBar" class="chart chart-bar" data="chartParams.votes" labels="chartParams.listOfLocations" series="chartParams.series" colours="chartParams.colours" options="chartParams.options"></canvas> 

使用以下角度代码(当然在控制器中)

$scope.chartParams = {
    listOfLocations: ['Trenzalore','Earth','Caprica','Sol','Tau Ceti'],
    votes: [[5,10,6,7,2]],
    series: ["Nice Places"],
    colours: [{fillColor:getRandomColour()}],
    options: {barShowStroke : false}
};

其中getRandomColour()将返回随机颜色。

现在,colours字段将此颜色应用于所有条形码:

same colour :( different colours

当我真的想要每个条形图的颜色不同时:

Plunker

3 个答案:

答案 0 :(得分:9)

使用最新版本的angular-chart.js,这是一个根据条件更改颜色的示例,而不修改库本身。相反,它使用chart-dataset-override功能。

诀窍是使用只有一个数据集的系列。

HTML

<div ng-controller="chartControl">
  <canvas id="bar" class="chart chart-bar" 
    chart-data="goal.data" 
    chart-labels="goal.labels" 
    chart-options="goal.options" 
    chart-series="goal.series" 
    chart-dataset-override="goal.datasetOverride"></canvas>
</div>

的JavaScript

将以下代码添加到控制器:

  var exceeded = '#27ae60';
  var achieved = '#bdc3c7';
  var defeated = '#e74c3c';

  $scope.goal = [];
  $scope.goal.goal = 3;

  $scope.goal.series = [ 'Visits' ];
  $scope.goal.labels = [
    'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'
  ];
  $scope.goal.data = [
    [5, 2, 3, 3, 3, 4, 2, 3, 4],
  ];

  var backgroundColours = [];

  // Assign the background colour based on whether the goal was achieved.
  for( var i = 0; i < $scope.goal.data[0].length; i++ ) {
    var v = $scope.goal.data[0][i];

    if( v > $scope.goal.goal ) {
      backgroundColours[i] = exceeded;
    }
    else if( v < $scope.goal.goal ) {
      backgroundColours[i] = defeated;
    }
    else {
      backgroundColours[i] = achieved;
    }
  } 

  // Create a place to hold the background colours.
  $scope.goal.datasetOverride = [{ backgroundColor: [] }];

  // Assign the colours to the pre-populated array.
  $scope.goal.datasetOverride[0].backgroundColor = backgroundColours;

  $scope.goal.options = {
    barShowStroke: false,
    scales: {
      yAxes: [{
        ticks: {
          min: 0,
          max: 7,
          stepSize: 1
        }
      }]
    }
  };

输出

产地:

Chart Output

相关链接

答案 1 :(得分:7)

Plunker Demo

最简单的方法是修改chart.js源文件以接受fillColor的颜色数组而不是单个颜色字符串。

如果你能得到其他提议的解决方案之一,我认为最终必须以非常不成角度的方式完成。

有些人可能不喜欢调整信号源,但是它有多么简单易行,而且它可以达到预期的效果,并且它不会有任何角度变化。在它的解决方案中......让我们把它称为对chart.js的改进。

请注意,我只修改了&#34; bar&#34;图表接受一组颜色,因为看起来chart.js在每个图表类型中分别引用fillColor。因此,您应该能够对任何图表类型进行此修改。

您需要修改的地方:

            helpers.each(dataset.data,function(dataPoint,index){
                //Add a new point for each piece of data, passing any required data to draw.
                datasetObject.bars.push(new this.BarClass({
                    value : dataPoint,
                    label : data.labels[index],
                    datasetLabel: dataset.label,
                    strokeColor : dataset.strokeColor,
                    fillColor : dataset.fillColor[index],   // <- added [index] here
                    highlightFill : dataset.highlightFill || dataset.fillColor,
                    highlightStroke : dataset.highlightStroke || dataset.strokeColor
                }));
            },this);

这个代码块可以在条形图的Chart.type.extend函数中找到。请看看:

Chart.Type.extend({
        name: "Bar",

并在该函数内部进一步查看将fillColor推送到datasetObject.bars的位置。

现在像以前一样设置你的图表,除了为fillColor提供一个数组:

function($scope){
          $scope.chartParams = {
        listOfLocations: ['Trenzalore','Earth','Caprica','Sol','Tau Ceti'],
        votes: [[5,10,6,7,2]],
        series: ["Nice Places"],
        colours: [{fillColor:["#FF0000", "#00FF00", "#0000FF", "#00FFFF", "#FFFF00"]}],
        options: {barShowStroke : false}
      };
        }

答案 2 :(得分:2)

图表库的一个更大的问题是,你迟早会碰壁,只能通过黑客攻击或扩展库来破坏它。知道你撞到了那堵墙,这个问题的答案可能是什么。

即使您可以创建自定义chart.js图表​​,您也可以使用d3.js解决它。我采用了一个基本的角度d3.js条形图示例并添加了您想要的行为:

var colors = d3.scale.category10();

// ...

bars.enter().append('rect')
    .classed('bar', true)
    .attr({x: chartW,
           width: barW,
           y: function(d, i) { return y1(d); },
           height: function(d, i) { return chartH - y1(d); },
           fill: function(d,i) { return colors(i) }
    })
// ...

http://puzzlingcodes.blogspot.com/2015/05/check-permissions-in-zf2-zendnavigation.html

以任何方式自定义图表,例如更改填充,描边或其他任何内容都在触手可及的范围内。 它仍然有很多代码,但如果你想在库支持之外进行自定义,那么代码总是要多得多。