I can\'t figure out how to get flot.pie to change the data shown in the labels from a percentage of the \"raw data\" to the actual data. In my example i\'ve created a pie chart
You could use:
formatter: function (label, series) { return ''+Math.round(series.percent)+"%" + series.data[0][1] +''; },