Tree map with levels

author(s): Jon Arild Nygård

by oysteinmoseng

HTML

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

<div id="container"></div>

JavaScript

Highcharts.chart('container', {
  series: [{
    type: "treemap",
    dataLabels: {
      enabled: true,
      borderRadius: 5,
      backgroundColor: 'black',
      color: 'white',
      style: {
        textOutline: false
      }
    },
    data: [{
      name: 'Anne',
      parent: 'A',
      value: 5
    }, {
      name: 'Rick',
      parent: 'A',
      value: 3
    }, {
      name: 'Peter',
      parent: 'A',
      value: 4
    }]
  }]
});