Highcharts Demo

author(s): Torstein Hønsi

by Richard Houltz

HTML

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

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

// Create the chart
Highcharts.chart('container', {
    chart: {
        type: 'pie'
     
    },
    title: {
        text: 'Async drilldown'
    },
  

    series: [{
        name: 'Things',
        colorByPoint: true,
        data: [{
            name: 'Animals',
            y: 5,
            drilldown: false
        }, {
            name: 'Fruits',
            y: 2,
            drilldown: false
        }, {
            name: 'Cars',
            y: 4,
            drilldown: true
        }]
    }]

    
});