Skip to content

Instantly share code, notes, and snippets.

@typpo
Created June 5, 2019 10:07
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 typpo/23b034fbc4e52662ea4dd6b7d53559bb to your computer and use it in GitHub Desktop.
Save typpo/23b034fbc4e52662ea4dd6b7d53559bb to your computer and use it in GitHub Desktop.
QuickChart / Chart.js pie chart without data labels
{
"type": "pie",
"data": {
"labels": [
"January",
"February",
"March",
"April",
"May"
],
"datasets": [{
"data": [50, 60, 70, 180, 190]
}],
},
"options": {
"plugins": {
"datalabels": {
"display": false,
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment