项目作者: gmazzamuto

项目描述 :
Angular Google Charts module
高级语言: TypeScript
项目地址: git://github.com/gmazzamuto/ng2-google-charts.git
创建时间: 2016-11-03T16:15:30Z
项目社区:https://github.com/gmazzamuto/ng2-google-charts

开源协议:MIT License

下载


ng2-google-charts

Angular Google Charts module

NPM Version
Downloads

Versions

  • Version 6 is built with Angular 9, should work with Angular versions from 8 to
    13.
  • Version 7 is built with Angular 12 in Ivy partial compilation mode, works with
    Angular versions from 12 to 13.

Features

  • All chart types
  • Dashboard and controls
  • Chart Editor
  • Formatters
  • Events

Sponsoring

If you are using this package commercially or if you find it useful, please
consider sponsoring this project.

Install

  1. npm i --save ng2-google-charts

Quick start

Import the module in your app.module.ts:

  1. import { Ng2GoogleChartsModule } from 'ng2-google-charts';
  2. @NgModule({
  3. ...
  4. imports: [
  5. ...
  6. Ng2GoogleChartsModule,
  7. ],
  8. providers: [
  9. })
  10. export class AppModule { }

In your templates, use the google-chart component like this:

  1. <google-chart [data]="pieChart"></google-chart>

and in the corresponding .ts file:

  1. import { GoogleChartInterface, GoogleChartType } from 'ng2-google-charts';
  2. public pieChart: GoogleChartInterface = {
  3. chartType: GoogleChartType.PieChart,
  4. dataTable: [
  5. ['Task', 'Hours per Day'],
  6. ['Work', 11],
  7. ['Eat', 2],
  8. ['Commute', 2],
  9. ['Watch TV', 2],
  10. ['Sleep', 7]
  11. ],
  12. //firstRowIsData: true,
  13. options: {'title': 'Tasks'},
  14. };

Usage & Demo

Check out the reference documentation and the live demo.

License

MIT