Overview
Chart Types
Area Charts
Bar Charts
Bubble Charts
Calendar Charts
Candlestick Charts
Column Charts
Combo Charts
Diff Charts
Donut Charts
Gantt Charts
Gauge Charts
Geo Charts
Histograms
Intervals
Line Charts
Maps
Org Charts
Pie Charts
Sankey Diagrams
Scatter Charts
Stepped Area Charts
Table Charts
Timelines
Tree Map Charts
Trendlines
VegaChart
Waterfall Charts
Word Trees
Todo
Hmm

Lootstrap Angular Overview

app.module.ts

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

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

app.config.ts

import {provideGoogleCharts} from "@qrsln/google-charts-angular";

export const appConfig: ApplicationConfig = {
  providers: [
    // ...
    provideGoogleCharts({
      version: 'current',
      safeMode: true,
      mapsApiKey: 'YOUR_API_KEY_HERE'
    }),
  ]
};