(function () { 'use strict'; var app = angular.module('pie', ['chart.js']); app.controller('PieCtrl', ['$scope', function ($scope) { $scope.labels = ['Series A', 'Series B']; $scope.colours = ['#9AFEFF', '#D1D0CE']; $scope.data = [49, 65]; }]); })();