Highcharts 3D Column 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 column chart using highcharts library with examples.

Highcharts 3D Column Chart Example

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

 

Live Preview

<html>

<head>

    <title>Highcharts 3D Column 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() {

            // Set up the chart

            var chart = new Highcharts.Chart({

                chart: {

                    renderTo: 'container',

                    type: 'column',

                    options3d: {

                        enabled: true,

                        alpha: 15,

                        beta: 15,

                        depth: 50,

                        viewDistance: 25

                    }

                },

                title: {

                    text: 'Chart rotation demo'

                },

                subtitle: {

                    text: 'Test options by dragging the sliders below'

                },

                plotOptions: {

                    column: {

                        depth: 25

                    }

                },

                series: [{

                    data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]

                }]

            });

            function showValues() {

                $('#alpha-value').html(chart.options.chart.options3d.alpha);

                $('#beta-value').html(chart.options.chart.options3d.beta);

                $('#depth-value').html(chart.options.chart.options3d.depth);

            }

            // Activate the sliders

            $('#sliders input').on('input change', function() {

                chart.options.chart.options3d[this.id] = parseFloat(this.value);

                showValues();

                chart.redraw(false);

            });

            showValues();

        });

    </script>

</head>

<body>

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

    <div id="sliders">

    <table>

        <tr>

            <td>Alpha Angle</td>

            <td><input id="alpha" type="range" min="0" max="45" value="15"/> <span id="alpha-value" class="value"></span></td>

        </tr>

        <tr>

            <td>Beta Angle</td>

            <td><input id="beta" type="range" min="-45" max="45" value="15"/> <span id="beta-value" class="value"></span></td>

        </tr>

        <tr>

            <td>Depth</td>

            <td><input id="depth" type="range" min="20" max="100" value="50"/> <span id="depth-value" class="value"></span></td>

        </tr>

    </table>

</div>

</body>

</html>

If you observe the above example, we created a 3D column 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 column chart example result

 

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