Easy Pie Chart https://rendro.github.io/easy-pie-chart

Easy Pie Chart is a lightweight jQuery plugin to render and animate nice pie charts with the HTML5 canvas element.

Example


New visitors

Usage


require(['jquery', 'px-libs/jquery.easypiechart'], function($) {
  ...
});
      

Usage

To use easy-pie-chart plugin, you need to include the next script:


<script src="path/to/js/libs/angular.easypiechart.js"></script>
      

Then inject the plugin into your angular application:

angular.module('yourApp', ['easypiechart']);

Alternatively, you can include easy-pie-chart plugin using ocLazyLoad plugin:


$ocLazyLoad.load([
  {
    name: 'easypiechart',
    files: [
      'path/to/js/libs/angular.easypiechart.js',
    ],
  },
]);