Files
iTop/node_modules/c3/htdocs/js/samples/angularjs.js
2024-03-04 10:31:26 +01:00

20 lines
545 B
JavaScript

var myApp = angular.module('myApp', [])
.controller('myCtrl', function ($scope) {
$scope.text = 'world';
$scope.loading = true;
var chart = c3.generate({
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 50, 20, 10, 40, 15, 25]
]
}
});
setTimeout(function () {
$scope.loading = false;
}, 1000);
});