负的堆叠柱状图



以下是负的堆叠柱状图示例。

我们已在 Google 图表配置语法 章节中了解了用于绘制图表的配置。现在,让我们来看一个负的堆叠柱状图示例。

配置

我们使用了 isStacked 选项以堆叠形式显示基于柱状的图表。

options = { 
   isStacked:true,
}

示例

app.component.ts

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = 'Population (in millions)';
   type = 'BarChart';
   data = [
      ["2012", 900, 390],
      ["2013", -1000, 400],
      ["2014", 1170, 440],
      ["2015", 1250, 480],
      ["2016", 1530, 540]
   ];
   columnNames = ['Year', 'Asia','Europe'];
   options = {   
      hAxis: {
         title: 'Year'
      },
      vAxis:{
         minValue:0
      },
      isStacked:true	  
   };
   width = 550;
   height = 400;
}

结果

验证结果。

Negative Stacked Column Chart
angular_googlecharts_column_charts.htm
广告