0.3.0 • Published 5 years ago

ng-graphics v0.3.0

Weekly downloads
19
License
-
Repository
github
Last release
5 years ago

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 🌳

0.3.0

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago