N°5621 Move C3 0.4.11 to NPM

This commit is contained in:
Pierre Goiffon
2024-02-16 16:42:42 +01:00
parent ff079f7d01
commit f3fbce7459
609 changed files with 84517 additions and 6 deletions

19
node_modules/c3/htdocs/js/samples/angularjs.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
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);
});