Package Exports
- @ngx-chart/doughnut
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ngx-chart/doughnut) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@ngx-chart/doughnut
Angular library for draw doughnut charts.
Table of Contents
Installation
Install @ngx-chart/doughnut
npm i @ngx-chart/doughnut --save
Documentation
Doughnt
Params
param | type | description |
---|---|---|
values | array |
Array of values to represent. |
colors? | array |
Color of segments of doughnt. If there isn't colors are applied random colors. |
padding | boolean | Draw padding between doughnut segments. |
labels | object | |
labels.position | string | Set the position of labels. Allowed values are 'internal' or 'external'. |
labels.titles | array |
Array of titles of labels |
Usage:
@ app.module.ts
...
import { DoughnutGraphModule } from '@ngx-chart/doughnut-graph';
...
@NgModule({
...
imports: [
...
DoughnutGraphModule
],
...
})
@ file.component.ts
...
ngOnInit() {
this.DoughnutData = {
values: [32, 24, 21, 46],
colors: ['red', 'blue', 'yellow', 'green']
};
}
...
@ file.html
<ngl-doughnut
style="width: 200px; height: 100px; display: block;"
[graphData]="DoughnutData"
></ngl-doughnut>