ng2-google-charts
Version:
Google Charts module for Angular 2 and beyond
86 lines (68 loc) • 2.08 kB
Markdown
> Angular Google Charts module
[![NPM Version][npm-image]][npm-url]
[![Downloads][npm-downloads-image]][npm-downloads-url]
* 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.
* All chart types
* Dashboard and controls
* Chart Editor
* Formatters
* Events
*If you are using this package commercially or if you find it useful, please
consider [sponsoring][donate-url] this project.*
```bash
npm i --save ng2-google-charts
```
Import the module in your `app.module.ts`:
```ts
import { Ng2GoogleChartsModule } from 'ng2-google-charts';
@NgModule({
...
imports: [
...
Ng2GoogleChartsModule,
],
providers: [
})
export class AppModule { }
```
In your templates, use the `google-chart` component like this:
```html
<google-chart [data]="pieChart"></google-chart>
```
and in the corresponding `.ts` file:
```ts
import { GoogleChartInterface, GoogleChartType } from 'ng2-google-charts';
public pieChart: GoogleChartInterface = {
chartType: GoogleChartType.PieChart,
dataTable: [
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7]
],
//firstRowIsData: true,
options: {'title': 'Tasks'},
};
```
Check out the [reference documentation][reference] and the [live demo][example-page].
[](LICENSE.md)
[]: https://img.shields.io/npm/v/ng2-google-charts.svg
[]: https://npmjs.org/package/ng2-google-charts
[]: https://img.shields.io/npm/dm/ng2-google-charts.svg
[]: https://npmjs.org/package/ng2-google-charts
[]: https://www.devrandom.it/software/ng2-google-charts/additional-documentation/usage.html
[]: https://www.devrandom.it/software/ng2-google-charts/demo
[]: https://github.com/gmazzamuto/ng2-google-charts?sponsor=1