HighCharts - Pie Chart

HTML

<script
 src="http://github.highcharts.com/v3.0Beta/highcharts.js"></script>

<div id="highchart_stats" style="width: 300px; height: 300px; margin: 0 auto; border:1px solid black;"></div>

JavaScript

jQuery(function() {
  var options = {
    chart: {
      "defaultSeriesType":"pie",
      "backgroundColor":null,
      "renderTo":"highchart_stats"},
            title: {"text":""},
            legend: {"layout":"vertical",
              "style":{}},
            xAxis: {},
            yAxis: {"title":{"text":null},
            "labels":{}},
            tooltip:  {"enabled":true},
            credits: {"enabled":false},
            plotOptions: {"areaspline":{}},
            series: [{"type":"pie",
              "name":"Campaign Stats",
              "data":[["Bounced",19083],
              ["Not started",8],
              ["Delivered",21039],
              ["Unsubscribed",88],
              ["Opened",1155],
              ["Clicked",72],
              ["Complaint",56],
              ["Dropped",78]]}],
            subtitle: {}
    };

    var chart = new Highcharts.Chart(options);
});