Is it possible to have two graphics on the same page with the angular library chart js? for example one of line and all of bars. Is that I'm trying but only shows me data from the first, the second graphic is totally white, it's as if I did not get the corresponding classes from this library.
<div ng-app="app1">
<div id="container" class="container">
<div class="row" ng-controller="LineCtrl">
angular.module("app1", ["chart.js"]).controller("LineCtrl", function ($scope) {
<div ng-app="app">
<div id="container" class="container">
<div class="row" ng-controller="BarCtrl">
angular.module("app", ["chart.js"]).controller("BarCtrl", function ($scope) {
And these are the bookstores that I use:
<script src="angular/angular.min.js"></script>
<script src="angular/Chart.min.js"></script>
<script src="angular/angular-chart.min.js"></script>
<script src="angular/angular-chart.js"></script>
<script src="graficos.js"></script>