Highcharts Tree Map with Levels Chart

In the previous chapters, we learned how to setup highcharts library and how to create a chart with required configurations using highcharts library in our webpage. Now, we will learn how to create a tree map with levels using highcharts library with examples.

Highcharts Tree Map with Levels Example

Following is the example of creating a tree map chart with levels by setting the required chart properties using highcharts library.

 

Live Preview

<html>

<head>

    <title>Highcharts Tree Map with Levels Chart</title>

    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>

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

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

    <script type="text/javascript">

        $(function() {

            Highcharts.chart('container', {

                series: [{

                    type: "treemap",

                    layoutAlgorithm: 'stripes',

                    alternateStartingDirection: true,

                    levels: [{

                        level: 1,

                        layoutAlgorithm: 'sliceAndDice',

                        dataLabels: {

                            enabled: true,

                            align: 'left',

                            verticalAlign: 'top',

                            style: {

                                fontSize: '15px',

                                fontWeight: 'bold'

                            }

                        }

                    }],

                    data: [{id: 'A',name: 'Apples',color: "#EC2500"},

                           {id: 'B',name: 'Bananas',color: "#ECE100"},

                           {id: 'O',name: 'Oranges',color: '#EC9800'},

                           {name: 'Anne',parent: 'A',value: 5},

                           {name: 'Rick',parent: 'A',value: 3},

                           {name: 'Peter',parent: 'A',value: 4},

                           {name: 'Anne',parent: 'B',value: 4},

                           {name: 'Rick',parent: 'B',value: 10},

                           {name: 'Peter',parent: 'B',value: 1},

                           {name: 'Anne',parent: 'O',value: 1},

                           {name: 'Rick',parent: 'O',value: 3},

                           {name: 'Peter',parent: 'O',value: 3},

                           {name: 'Susanne',parent: 'Kiwi',value: 2,color: '#9EDE00'}

                         ]

                }],

                title: {

                    text: 'Fruit consumption'

                }

            });

        });

    </script>

</head>

<body>

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

</body>

</html>

If you observe the above example, we created a tree map chart with levels using highcharts library with required properties.

 

When we execute the above highcharts example, we will get the result like as shown below.

 

Highcharts Tree Map with Levels Example Result

 

This is how we can create a tree map chart with levels using highcharts library with required properties.