StackedColumnChart

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
  $('#container').highcharts({
   "chart": {
      "type": "column"
   },
   "title": {
      "text": "",
      "useHTML": true
   },
   "xAxis": {
      "categories": ["Росздравнадзор", "Роскомнадзор", "МЧС", "Ростехнадзор", "Роспотребнадзор", "Ространснадзор", "Рособрнадзор", "Росгидромет", "ФСТЭК", "ФСРАР", "Прочие"],
      "labels": {
         "style": {
            "fontSize": "12px",
            "fontFamily": "TensorFont Regular, TensorFont"
         }
      }
   },
   "yAxis": {
      "labels": {
         "style": {
            "fontSize": "13px",
            "fontFamily": "TensorFont Regular, TensorFont"
         }
      },
      "title": {
         "text": ""
      },
      "stackLabels": {
         "enabled": false,
         "format": "{total}",
         "style": {
            "fontSize": "12px",
            "fontFamily": "TensorFont Regular, TensorFont"
         }
      }
   },
   "legend": {
      "itemStyle": {
         "fontSize": "14px",
         "fontFamily": "TensorFont Regular, TensorFont",
         "fontWeight": "normal",
         "cursor": "default"
      },
      "layout": "vertical",
      "verticalAlign": "top"
   },
   "tooltip": {
      "enabled": false
   },
   "plotOptions": {
      "column": {
         "animation": false,
         "events": {
            legendItemClick: function() {
               return false;
            }
         },
         "point": {
            "events": {}
         },
         "stacking": "normal",
         "states": {
            "hover": {
               "enabled": false
            }
         }
      }
   },
   "series": [{
      "name": "Действуют",
      "data": [43, 14, 8, 7, 5, 4, 2, 2, 1, 0, 444]
   }, {
      "name": "Истекли",
      "data": [95, 8, 0, 0, 0, 1, 14, 32, 0, 119, 107]
   }]
});
})