Highcharts 堆疊組柱形圖

Highcharts 柱形圖Highcharts 柱形圖

以下實(shí)例演示了堆疊組柱形圖。

我們?cè)谇懊娴恼鹿?jié)已經(jīng)了解了 Highcharts 基本配置語(yǔ)法。接下來(lái)讓我們來(lái)看下其他的配置。在 plotOptions 中添加 stacking 屬性:


配置

plotOptions:數(shù)據(jù)點(diǎn)選項(xiàng)

plotOptions用于設(shè)置圖表中的數(shù)據(jù)點(diǎn)相關(guān)屬性。plotOptions根據(jù)各種圖表類型,其屬性設(shè)置略微有些差異。

配置圖表堆疊設(shè)置 plotOptions.area.stacking 為 "percent"。如果禁用堆疊使用 null。

var plotOptions = {
   column: {
      stacking: 'normal',
      dataLabels: {
         enabled: true,
         color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',
         style: {
            textShadow: '0 0 3px black'
         }
      }
   }
};

series 數(shù)據(jù)列項(xiàng)配置

配置堆疊組中每個(gè)對(duì)應(yīng)的數(shù)據(jù)列項(xiàng)。

series: [{
   name: 'John',
   data: [5, 3, 4, 7, 2],
   stack: 'male'
}] 

實(shí)例

文件名:highcharts_column_rotated.htm

<html>
<head>
<meta charset="UTF-8" />
<title>Highcharts 教程 | W3Cschool教程(w3cschool.cn)</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" rel="external nofollow" ></script>
<script src="http://code.highcharts.com/highcharts.js" rel="external nofollow" ></script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
$(document).ready(function() {  
   var chart = {
      type: 'column'
   };
   var title = {
      text: 'Total fruit consumption, grouped by gender'   
   };    
   var xAxis = {
      categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
   };
   var yAxis ={
      allowDecimals: false,
      min: 0,
      title: {
        text: 'Number of fruits'
      }     
   }; 
   var plotOptions = {
      column: {
         stacking: 'normal'        
      }
   };
   var credits = {
      enabled: false
   };
   var series= [{
          name: 'John',
            data: [5, 3, 4, 7, 2],
            stack: 'male'
        }, {
            name: 'Joe',
            data: [3, 4, 4, 2, 5],
            stack: 'male'
        }, {
            name: 'Jane',
            data: [2, 5, 6, 2, 1],
            stack: 'female'
        }, {
            name: 'Janet',
            data: [3, 0, 4, 4, 3],
            stack: 'female'
   }];     
      
   var json = {};   
   json.chart = chart; 
   json.title = title;   
   json.xAxis = xAxis;
   json.yAxis = yAxis;  
   json.plotOptions = plotOptions;
   json.credits = credits;
   json.series = series;
   $('#container').highcharts(json);
  
});
</script>
</body>
</html>

嘗試一下 ?

以上實(shí)例輸出結(jié)果為:

Highcharts 柱形圖Highcharts 柱形圖