Angular Google Charts - Histogram with Custom Bucket Size



Following is an example of a Histogram Chart with custom bucket size.

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 Histogram Chart with custom bucket size.

Configurations

We've used color configuration to change default bucket size of histogram chart.

options = {   
   legend:'none',
   colors:['green'],
   histogram: { bucketSize: 5 }
};

Example - Usage of Histogram Chart with Custom Bucket

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.Histogram;
   data = [
      ["1", 80],["2", 55],["3", 68],["4", 80],["5", 54],
      ["6", 70],["7", 85],["8", 78],["9", 70],["10", 58],
      ["11", 90],["12", 65],["13", 88],["14", 82],["15", 65],
      ["16", 86],["17", 45],["18", 62],["19", 84],["20", 75],
      ["21", 82],["22", 75],["23", 58],["24", 70],["25", 85]
   ];
   columnNames = ["Student Roll No", "height"];
   options = {  
      title: 'Students height, in cm',   
      legend:'none',
	  colors:['green'],
      histogram: { bucketSize: 5 }
   };
   width = 550;
   height = 400;
}

Result

Verify the result.

Histogram Chart with Custom Bucket
angular_googlecharts_histogram_charts.htm
Advertisements