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

18
node_modules/c3/htdocs/samples/angularjs.html generated vendored Normal file
View File

@@ -0,0 +1,18 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/c3.css">
<script src="/js/angular.min.js"></script>
<script src="/js/d3.min.js" charset="utf-8"></script>
<script src="/js/c3.js"></script>
<script src="/js/samples/angularjs.js"></script>
</head>
<body ng-app="myApp">
<div ng-controller="myCtrl">
<div ng-hide="loading">
<p>Hello, {{text}}</p>
<div id="chart"></div>
</div>
</div>
</body>
</html>