33 lines
1008 B
HTML
33 lines
1008 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>Pie update colors</title>
|
|
<link href="../../examples/bootstrap.css" rel="stylesheet">
|
|
</head>
|
|
<body ng-app="pie" id="top">
|
|
<div class="container">
|
|
<section id="charts">
|
|
<div class="page-header">
|
|
<h1>Charts</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-4 col-sm-12" ng-controller="PieCtrl">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Pie Chart</div>
|
|
<div class="panel-body">
|
|
<canvas class="chart my-special-pie" chart-data="data" chart-labels="labels" chart-colors="colors"></canvas>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<script src="../../node_modules/angular/angular.min.js"></script>
|
|
<script src="../../node_modules/chart.js/dist/Chart.min.js"></script>
|
|
<script src="../../angular-chart.js"></script>
|
|
<script src="custom-directive.js"></script>
|
|
</body>
|
|
</html>
|