Pie with legend

author(s): Torstein Hønsi

by sectioni

HTML

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

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

JavaScript

// Build the chart
Highcharts.chart('container', {

  chart: {
    type: 'pie'
  },

  plotOptions: {
    pie: {
      dataLabels: {
        enabled: false
      },
      showInLegend: true,

    }
  },

  legend: {
    backgroundColor: 'yellow',
    itemWidth: 90,
    itemStyle: {
      fontSize: '11px',
      color: 'blue',
      textOverflow: "allow"
    }

  },

  series: [{
    data: [{
      name: 'C',
      y: 61.41,
    }, {
      name: 'Internet Explorer',
      y: 11.84
    }, {
      name: 'Firefox',
      y: 10.85
    }, {
      name: 'E',
      y: 4.67
    }, {
      name: 'Safari',
      y: 4.18
    }]
  }]
});