Treemap Demo

author(s): Jon Arild Nygård

by Geo George

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/treemap.js"></script>
<div id="container"></div>

CSS

#container {
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
}

JavaScript

Highcharts.chart('container', {
    series: [{
        type: "treemap",
        layoutAlgorithm: 'squarified',
        data: [{
            name: 'Goal 1: A High Standard of Living, Quality of Life and Well Being for All',
            value: 2.18
        }, {
            name: 'Goal 1: A High Standard of Living, Quality of Life and Well Being for Alls',
            value: 1.58
        }]
    }],
    title: {
        text: 'Highcharts Treemap'
    }
});