62 lines
2 KiB
JavaScript
62 lines
2 KiB
JavaScript
|
(function () {
|
||
|
'use strict';
|
||
|
|
||
|
var app = angular.module('charts', ['chart.js']);
|
||
|
|
||
|
app.controller('LineCtrl', ['$scope', '$timeout', function ($scope, $timeout) {
|
||
|
$scope.labels = ['January', 'February', 'March', 'April', 'May', 'June', 'July'];
|
||
|
$scope.series = ['Series A', 'Series B'];
|
||
|
$scope.data = [
|
||
|
[65, 59, 80, 81, 56, 55, 40],
|
||
|
[28, 48, 40, 19, 86, 27, 90]
|
||
|
];
|
||
|
$timeout(function () {
|
||
|
$scope.labels = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'];
|
||
|
$scope.data = [
|
||
|
[28, 48, 40, 19, 86, 27, 90],
|
||
|
[65, 59, 80, 81, 56, 55, 40]
|
||
|
];
|
||
|
$scope.series = ['Series C', 'Series D'];
|
||
|
}, 0);
|
||
|
}]);
|
||
|
|
||
|
app.controller('BarCtrl', ['$scope', '$timeout', function ($scope, $timeout) {
|
||
|
$scope.options = { scaleShowVerticalLines: false };
|
||
|
$scope.labels = ['2006', '2007', '2008', '2009', '2010', '2011', '2012'];
|
||
|
$scope.series = ['Series A', 'Series B'];
|
||
|
$scope.data = [
|
||
|
[65, 59, 80, 81, 56, 55, 40],
|
||
|
[28, 48, 40, 19, 86, 27, 90]
|
||
|
];
|
||
|
$timeout(function () {
|
||
|
$scope.options = { scaleShowVerticalLines: true };
|
||
|
}, 0);
|
||
|
}]);
|
||
|
|
||
|
app.controller('DoughnutCtrl', function ($scope) {
|
||
|
$scope.labels = ['Download Sales', 'In-Store Sales', 'Mail-Order Sales'];
|
||
|
$scope.data = [350, 450, 100];
|
||
|
});
|
||
|
|
||
|
app.controller('PieCtrl', ['$scope', '$timeout', function ($scope, $timeout) {
|
||
|
$scope.labels = ['Download Sales', 'In-Store Sales', 'Mail Sales'];
|
||
|
$scope.data = [0, 0, 0];
|
||
|
$timeout(function () {
|
||
|
$scope.data = [350, 450, 100];
|
||
|
}, 0);
|
||
|
}]);
|
||
|
|
||
|
app.controller('PolarAreaCtrl', function ($scope) {
|
||
|
$scope.labels = ['Download Sales', 'In-Store Sales', 'Mail Sales', 'Telesales', 'Corporate Sales'];
|
||
|
$scope.data = [300, 500, 100, 40, 120];
|
||
|
});
|
||
|
|
||
|
app.controller('RadarCtrl', function ($scope) {
|
||
|
$scope.labels = ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'];
|
||
|
$scope.data = [
|
||
|
[65, 59, 90, 81, 56, 55, 40],
|
||
|
[28, 48, 40, 19, 96, 27, 100]
|
||
|
];
|
||
|
});
|
||
|
})();
|