ng-graphics
v0.3.0
Published
A d3-driven charting library for Angular applications π contributor friendly and idiomatic π€
Downloads
3
Readme
ng-graphics
A d3-driven charting library for Angular applications π contributor friendly and idiomatic π€
Getting Started
First Install this dependency:
npm i ng-graphics
Then put the following line into your app.module.ts file and add that variable to your imports array:
import { NgChartsModule } from "ng-graphics";
Add the following to lines to your angular.json:
"node_modules/d3/dist/d3.min.js",
"node_modules/jquery/dist/jquery.min.js",
"node_modules/popper.js/dist/umd/popper.min.js",
"node_modules/tippy.js/dist/tippy-bundle.iife.min.js"
If for instance you want a bar-chart, add this to your html:
<div style="height: 500px; width: 500px">
<lib-bar-chart
[data]="[
{
key: 'A',
value: 30
},
{
key: 'B',
value: 50
}
]"
></lib-bar-chart>
</div>
It will inherit the height and the width of its parent element π³