Created
June 5, 2019 10:07
-
-
Save typpo/23b034fbc4e52662ea4dd6b7d53559bb to your computer and use it in GitHub Desktop.
QuickChart / Chart.js pie chart without data labels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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