I have figured out how to change the size of the data labels inside the doughnut and the doughnut label using
{
"options: {
"plugins": {
"datalabels: {}
"doughnutlabels": {}
}
}
}
but I cannot find any docs on changing the size of the data labels that float above the chart.
"chart": {
"type": 'doughnut',
"data": {
"labels": ['In Progress', 'In Review', 'Not Started'],
"datasets": [{
"label": 'MRs',
"data": [int(in_progress), int(in_review), int(not_started)],
"backgroundColor": ['blue', 'green', 'red']
}]
},