Bubble Chart with Data Labels



Following is an example of a Bubble Chart with Labels.

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 Bubble Chart with Data Labels.

Configurations

We've used BubbleChart class to show a Bubble Chart with Data Labels.

type = 'BubbleChart';

Example

app.component.ts

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = 'Age vs Weight';
   type = 'BubbleChart';
   data = [
      ["Robert", 8, 12],
      ["Mohan", 4, 5.5],
      ["Ramesh", 11, 14],
      ["Julie", 3, 3.5],
      ["Sohan", 6.5, 7]
   ];
   columnNames = ['Id', 'Age','Weight'];
   options = { };
   width = 550;
   height = 400;
}

Result

Verify the result.

Bubble Chart with Labels
angular_googlecharts_bubble_charts.htm
Advertisements