HighCharts Pie Test

Attempting to get data to pie from table

HTML

<script src="http://www.highcharts.com/js/highcharts.js"></script>
<div id="container" style="width: 500px; height: 500px"></div>

JavaScript

var chart;
$(document).ready(function () {
    
    chart = new Highcharts.Chart(
{
   "series":[
      {
         "name":"Values",
         "type":"pie",
         "sliced":true,
         "data":[
            [
               "Big ol' Positive Slice",
               538
            ],
            [
               "Another Positive Number",
               199
            ],
            [
               "Hey, yo, I'm Negative",
               -130
            ]
         ],
         "pointWidth":15,
         "color":"#C6D9E7",
         "borderColor":"#8BB6D9",
         "shadow":true,
      }
   ],
   "title":{
      "text":null
   },
   "chart":{
      "renderTo":"container"
   },
   "credits":{
      "enabled":false
   }
}        
    );
    
    
});