0👍
Thanks again to LeeLanalee for pointing me in the right direction.
Unbeknownst to me, there was a Chart.js global plugin set up for all the doughnut charts called chartjs-plugin-piechart-outlabels
(https://www.npmjs.com/package/chartjs-plugin-piechart-outlabels). As per following SO post, I was able to disable the line-box labels for specific instances of the doughnut charts (in React) as follows:
ChartJs – Pie Chart – how to remove labels that are on the pie chart
options={ {
plugins: {
outlabels: false
}
} }
Thanks again!
- Chartjs-Customize fill colors for ChartJS 3.x using beforRender plugin event
- Chartjs-How do I run one of the Chart.JS examples locally via HTML?
Source:stackexchange.com