1.0.1 • Published 8 years ago

angular-progressbar.js v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

angular-progressbar.js

kimmobrunfeldt's Progressbar.js AngularJS wrapper

Installation

Add the package via bower or npm

bower install angular-progressbar.js
npm install angular-progressbar.js

Include progressbar.min.js and angular-progressbar.js it in your markup

<script src=".../progressbar.js/dist/progressbar.min.js"></script>
<script src=".../angular-progressbar.js/dist/angular-progressbar.js"></script>

Include angular dependency

angular.module('yourModule', ['ngProgressbar', ...])

Directiives

Circle progress

<progress-circle amount="45"></progress-circle>

You can set color, stroke-width, fill, trail-color, trail-width and text as attributes on the directive itself:

<progress-circle amount="45" color="#FFFFFF" text="text" ></progress-circle>