Highcharts 3D Donut 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 3d donut chart using highcharts library with examples.

Highcharts 3D Donut Chart Example

Following is the example of creating a 3D donut chart by setting the required chart properties using highcharts library.

 

Live Preview

<html>

<head>

    <title>Highcharts 3D Donut 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/highcharts-3d.js"></script>

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

    <script src="https://code.highcharts.com/modules/export-data.js"></script>

    <script type="text/javascript">

        $(function() {

            Highcharts.chart('container', {

                chart: {

                    type: 'pie',

                    options3d: {

                        enabled: true,

                        alpha: 45

                    }

                },

                title: {

                    text: 'Contents of Highsoft\'s weekly fruit delivery'

                },

                subtitle: {

                    text: '3D donut in Highcharts'

                },

                plotOptions: {

                    pie: {

                        innerSize: 100,

                        depth: 45

                    }

                },

                series: [{

                    name: 'Delivered amount',

                    data: [

                        ['Bananas', 8],

                        ['Kiwi', 3],

                        ['Mixed nuts', 1],

                        ['Oranges', 6],

                        ['Apples', 8],

                        ['Pears', 4],

                        ['Clementines', 4],

                        ['Reddish (bag)', 1],

                        ['Grapes (bunch)', 1]

                    ]

                }]

            });

        });

    </script>

</head>

<body>

    <div id="container" style="width: 100%; height: 400px;"> </div>

</body>

</html>

If you observe the above example, we created a 3D donut chart using highcharts library with required properties.

 

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

 

Highcharts 3d donut chart example result

 

This is how we can create a 3D donut chart using highcharts library with required properties.