Pie with legend

by kzoon

HTML

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

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

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'pie'
    },
 legend: {
    enabled: true
  },
    plotOptions: {
        pie: {
                showInLegend: true,
        }
    },

    series: [{
        data: [
            ['Firefox',   44.2],
            ['IE7',       26.6],
            ['IE6',       20],
            ['Chrome',    3.1],
            ['Other',    5.4]
        ]
    }]
});