Find Similar Packages for angular-google-charts
angular-google-chartsSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on angular-google-charts's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of angular-google-charts](https://npm-compare.com/img/npm-trend/THREE_YEARS/angular-google-charts.png)](https://npm-compare.com/angular-google-charts#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Show GitHub stars trend chart on angular-google-charts's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of angular-google-charts](https://npm-compare.com/img/github-trend/angular-google-charts.png)](https://npm-compare.com/angular-google-charts)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
angular-google-charts16,804276316 kB84 months agoMIT
README for angular-google-charts

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