Highcharts 百分比堆叠柱形图

返回上一级

下图是一个 Highcharts 百分比堆叠柱形图

配置

属性 plotOptions 用于设置图表中的数据点相关属性

配置属性 plotOptions.area.stacking 为 "percent" 可以显示百分比堆叠柱形图

如果要禁用堆叠可以设置为 null

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

范例

下面的代码列出了 Highcharts 百分比堆叠柱形图 的基本配置

<!doctype html>
<meta charset="utf-8" />
<title>Highcharts 基础教程 | 简单教程(www.twle.cn)</title>
<script src="https://cdn.hcharts.cn/highcharts/highcharts.js"></script>
<div id="container" style="width: 500px; height: 400px; margin: 0 auto"></div>
<script>
var chart = {
   type: 'column'
};
var title = {
   text: '堆叠柱形图' 
};    
var xAxis = {
   categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
};
var yAxis ={
   min: 0,
   title: {
     text: '水果总消费量'
   }
};  
var tooltip = {
   pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.percentage:.0f}%)<br/>',
   shared: true
};
var plotOptions = {
   column: {
      stacking: 'percent'        
   }
};
var credits = {
   enabled: false
};
var series= [{
     name: 'John',
         data: [5, 3, 4, 7, 2]
     }, {
         name: 'Jane',
         data: [2, 2, 3, 2, 1]
     }, {
         name: 'Joe',
         data: [3, 4, 4, 2, 5]      
}];     



var options = {};

options.chart = chart;
options.title = title;
options.xAxis = xAxis;
options.yAxis = yAxis;
options.plotOptions = plotOptions;
options.tooltip = tooltip;
options.credits = credits;
options.series = series;

var chart = Highcharts.chart('container',options);
</script>

运行范例 »

以上范例输出如下

返回上一级

学习 Hightcharts

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.