0.1.1 • Published 4 years ago

debugee-chart v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

debugee-chart

A wrapper of the Google Charts library written for Angular 6 & 7

Usage

Import the GoogleChartsModule in your app.module.ts:

import { GoogleChartsModule } from 'debugee-chart';

@NgModule({
  ...
  imports: [
    ...
    GoogleChartsModule.forRoot(),
    ...
  ],
  ...
})
export class AppModule {}

And create a google-chart component somewhere in your application:

<google-chart
  [title]="chart.title"
  [type]="chart.type"
  [data]="chart.data"
  [columnNames]="chart.columnNames"
  [options]="chart.options">
</google-chart>

Install

With npm installed, run

$ npm install debugee-chart

Detailed Instructions

For more detailed instructions, a big readme and the source code please go to GitHub.

License

MIT