Highcharts Demo

author(s): Torstein Hønsi

by Roland Doda

HTML

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

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

JavaScript

Highcharts.chart('container', {
    credits: {
      enabled: false
    },
    title: {
      text: null
    },
    yAxis: {
      title: false
    },
    legend: {
      enabled: false
    },
    xAxis: {
      categories: [
        'Law Department',
        'Science Department',
        'Medical Department'
      ]
    },
    series: [{
      data: [{
          name: 'Law Department',
          y: 194627.6
        },
        {
          name: 'Science Department',
          y: 194627.6
        },
        {
          name: 'Medical Department',
          y: 0
        }
      ],
      name: 'Department Share',
      type: 'pie'
    }]
  });