具有堆积百分比的柱形图

以下是带有百分比的堆积柱形图的示例。

我们已经在 Highcharts 配置语法 章节中看到了用于绘制图表的配置。 现在让我们看看其他配置以及如何在 plotoptions 中添加 stacking 属性。

下面给出了带有百分比的堆积柱形图的示例。


plotOptions

plotOptions 是每个系列类型的配置对象的包装对象。 每个系列的配置对象也可以被系列数组中给定的每个系列项目覆盖。 这是将每个系列的值堆积在一起。 这是将每个系列的值堆积在一起。

使用plotOptions.column.stacking将图表的堆积配置为"percent"。 可能的值为: null 会禁用堆积,"normal"按值堆积,"percent"按百分比堆积图表。

var plotOptions = {
   series: {
      stacking: 'percent'
   }
};

示例

app.component.ts

import { Component } from '@angular/core';
import * as Highcharts from 'highcharts';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   highcharts = Highcharts;
   chartOptions = {   
      chart: {
         type: 'column'
      },
      title: {
         text: 按地区划分的历史世界人口'
      },
      subtitle : {
         text: 'Source: Wikipedia.org'  
      },
      legend : {
         layout: 'vertical',
         align: 'left',
         verticalAlign: 'top',
         x: 250,
         y: 100,
         floating: true,
         borderWidth: 1,
        
         backgroundColor: (
            (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || 
               '#FFFFFF'), shadow: true
       },
       xAxis:{
         categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'], title: {
            text: null
         } 
      },
      yAxis : {
         min: 0,
         title: {
            text: 'Population (millions)', align: 'high'
         },
         labels: {
            overflow: 'justify'
         }
      },
      tooltip : {
         valueSuffix: ' millions'
      },
      plotOptions : {
         column: {
            dataLabels: {
               enabled: true
            }
         },
         series: {
            stacking: 'percent'
         }
      },
      credits:{
         enabled: false
      },
      series: [
         {
            name: 'Year 1800',
            data: [107, 31, 635, 203, 2]
         }, 
         {
            name: 'Year 1900',
            data: [133, 156, 947, 408, 6]
         }, 
         {
            name: 'Year 2008',
            data: [973, 914, 4054, 732, 34]      
         }
      ]
   };
}

结果

验证结果。

带百分比的堆积柱形图

❮ angular_highcharts_column_charts.html