Chartjs-Color the bars using Angular-Chart.js

0👍

Instead of this

  $scope.data = [
    [0, 29, 40, 56, 56, 55, 40]
  ];

Use this

  $scope.data = 
    [0, 29, 40, 56, 56, 55, 40]
  ;

This will give you something like this.

Bar

Leave a comment