@somasekhar1712/ngx-google-charts
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ngx-google-charts

A wrapper for the Google Charts library written in ngx.

Install

With npm installed, run

npm install ngx-google-charts

Usage

Import the GoogleChartsModule in your app.module.ts:

import { GoogleChartsModule } from 'ngx-google-charts';

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

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

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

Detailed Instructions

Find the full readme at GitHub.

License

MIT

Package Sidebar

Install

npm i @somasekhar1712/ngx-google-charts

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

426 kB

Total Files

66

Last publish

Collaborators

  • somasekhar1712