Skip to content

Instantly share code, notes, and snippets.

@pawl
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pawl/e8e2b246365c60755403 to your computer and use it in GitHub Desktop.
Save pawl/e8e2b246365c60755403 to your computer and use it in GitHub Desktop.
Change Percent To Numbers and Keep Color - Flot Pie Chart
options = {
series: {
pie: {
innerRadius: 0.5,
show: true,
label: {
show: true,
formatter: function (label, series) {
console.log(series);
return '<div style="font-size:8pt;text-align:center;padding:2px; color: ' + series.color +';">' + label + '<br/>' + series.data[0][1] + '</div>';
},
}
}
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment