Angular Google Charts - Basic Bubble Chart



Following is an example of a basic Bubble Chart.

We have already seen the configurations used to draw a chart in Google Charts Configuration Syntax chapter. Now, let us see an example of a basic Bubble Chart.

Configurations

We've used BubbleChart value to show bubble based chart.

type = ChartType.BubbleChart;

Example - Usage of Bubble Chart

app.ts

import { Component, signal } from '@angular/core';
import { ChartType, GoogleChart } from 'angular-google-charts';

@Component({
   selector: 'app-root',
   imports: [GoogleChart],
   templateUrl: './app.html',
   styleUrl: './app.css'
})
export class App {
   protected readonly title = signal('google-charts-app');
   type: ChartType = ChartType.BubbleChart;
   data = [
      ["", 8, 12],
      ["", 4, 5.5],
      ["", 11, 14],
      ["", 3, 3.5],
      ["", 6.5, 7]
   ];
   columnNames = ['Id', 'Age','Weight'];
   options = {   
      title: 'Age vs Weight',
	  hAxis: {
         title: 'Year'
      },
      vAxis:{
         minValue:0
      },
      isStacked:true	
   };
   width = 550;
   height = 400;
}

Result

Verify the result.

Basic Bubble Chart
angular_googlecharts_bubble_charts.htm
Advertisements