jtblin/angular-chart.js

View on GitHub
test/fixtures/horizontal-bar-chart.js

Summary

Maintainability
A
2 hrs
Test Coverage
(function () {
  'use strict';

  var app = angular.module('horizontal', ['chart.js']);
  Chart.defaults.global.legend = {
    display: false
  };

  app.controller('HorizontalBarCtrl', function ($scope) {
    $scope.labels = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'];
    $scope.active = true;
    $scope.data = [
      [65, 59, 90, 81, 56, 55, 40],
      [28, 48, 40, 19, 96, 27, 100]
    ];
  });

})();