Highcharts 堆叠组柱形图

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/chengqiuming/article/details/85008804

一 代码

<html>
<head>
<meta charset="UTF-8" />
<title>Highcharts 堆叠组柱形图</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></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: '按性别分组的水果消费总量'
   };
   // X 轴
   var xAxis = {
      categories: ['苹果', '橘子', '梨子', '葡萄', '香蕉']
   };
   // Y 轴
   var yAxis ={
      allowDecimals: false,
      min: 0,
      title: {
        text: '水果总量'
      }
   };
   // 配置图表堆叠设置 plotOptions.column.stacking 为 "normal"。
   // 如果禁用堆叠使用 null。
   var plotOptions = {
      column: {
         stacking: 'normal'
      }
   };
   var credits = {
      enabled: false
   };
   // 数据,按性别分组
   var series= [{
          name: '小明',
            data: [5, 3, 4, 7, 2],
            stack: 'male'
        }, {
            name: '小洪',
            data: [3, 4, 4, 2, 5],
            stack: 'male'
        }, {
            name: '小林',
            data: [2, 5, 6, 2, 1],
            stack: 'female'
        }, {
            name: '小红',
            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>

二 运行结果

猜你喜欢

转载自blog.csdn.net/chengqiuming/article/details/85008804
今日推荐