Angular Google Charts - Basic Stepped Area Chart



Following is an example of a basic Stepped Area 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 Stepped Area Chart.

Configurations

We've used SteppedAreaChart value to show Stepped Area chart.

type = ChartType.SteppedAreaChart;

Example - Usage of Stepped Area 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.SteppedAreaChart;
   data = [
      ["Alfred Hitchcock (1935)", 8.4,         7.9],
      ["Ralph Thomas (1959)",     6.9,         6.5],
      ["Don Sharp (1978)",        6.5,         6.4],
      ["James Hawes (2008)",      4.4,         6.2]
   ];
   columnNames = ['Director (Year)', 'Rotten Tomatoes','IMDB'];
   options = {
      title:"The decline of 'The 39 Steps'",
	  vAxis:{
         title:'Accumulated Rating'
      }  
   };
   width = 550;
   height = 400;
}

Result

Verify the result.

Basic Stepped Area Chart
angular_googlecharts_stepped_charts.htm
Advertisements