Get support for jcubic/angular.piechart

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

jcubic/angular.piechart

Angular Piechart 0.2.8

Angular piechart is a angular component that create svg based piecharts.

Based on Lea Verou Designing Flexible, Maintainable Pie Charts With CSS And SVG

Demo

installation

to install you can grab the files from the repo or install from

bower

browser install angular.piechart --save

npm

npm install angular.piechart --save

include the files:

<script src="js/angular.piechart.min.js"></script>
<link href="css/angular.piechart.min.css" rel="stylesheet"/>

and you can use this code to initialize the plugin:

<piechart ng-model="vm.data"></piechart>
function controller() {
    this.data = {
        color: '#1F187A',
        data: [
            {
                color: 'red',
                value: 10 // 10%
            },
            {
                color: 'green',
                value: 20 // 20%
            },
            {
                color: 'blue',
                value: 30 // 30%
            },
            {
                color: 'yellow',
                value: 40 // 40%
            }
        ]
    };
}

You can also inject stuff into piechart component it will be added after piechart so it will be on top.

For instance to add donat chart you can add another circle:

License

Licensed under MIT license

Copyright (c) 2016 Jakub T. Jankiewicz

Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

ud-bd4760f4