<!doctype html>
<html lang="ja"> 
<head>
  <meta charset="UTF-8">
  <script src="https://code.highcharts.com/highcharts.js"></script><!-- highcharts.js 隱ュ霎シ -->
  <!-- export-module 隱ュ霎シ https://www.highcharts.com/docs/export-module/export-module-overview  -->
  <script src="https://code.highcharts.com/modules/exporting.js"></script>
</head>
<body>
  <div id="container" style="width:480px; height:300px; border:solid 1px;"></div><!-- 蝗ウ陦ィ遉コ繧ィ繝ェ繧「遒コ菫� -->
  <script>
    Highcharts.chart('container', {
      chart: { type: 'column' },
      title: { text: 'Total fruit consumption, grouped by gender' },
      xAxis: { 
        categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'] 
      },
      yAxis: {
        allowDecimals: false,
        min: 0,
        title: { text: 'Number of fruits' }
      },
      tooltip: {
        formatter: function () {
          return '<b>' + this.x + '</b><br/>' + this.series.name 
          + ': ' + this.y + '<br/>' + 'Total: ' + this.point.stackTotal;
        }
      },
      plotOptions: {
        column: { stacking: 'normal' }
      },
      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'
      }] //series +++
    }); // Highcharts.chart +++
  </script>
</body>
</html>