angular-google-charts
TypeScript icon, indicating that this package has built-in type declarations

2.2.3 • Public • Published

angular-google-charts

A wrapper for the Google Charts library written in Angular.

Install

With npm installed, run

npm install angular-google-charts

Usage

Import the GoogleChartsModule in your app.module.ts:

import { GoogleChartsModule } from 'angular-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 angular-google-charts

Weekly Downloads

19,269

Version

2.2.3

License

MIT

Unpacked Size

398 kB

Total Files

45

Last publish

Collaborators

  • fernman