ChartJs - Round borders on a doughnut chart with multiple datasets
问题 I have a regular Chartjs doughnut chart with multiple datasets, using this code for the dataset: datasets: [ { label: 'Bugs', data: [ 60 , 6.6666666666667 , 33.333333333333 ], backgroundColor: ['#25CFE4', '#92E7F1', '#eeeeee'], }, { label: 'Fixes', data: [ 60 , 0.44444444444444 , 39.555555555556 ], backgroundColor: ['#514463', '#8C75AB', '#eeeeee'], }, { label: 'Redesigns', data: [ 33.333333333333 , 10.37037037037 , 56.296296296296 ], backgroundColor: ['#1B745F', '#40C1A0', '#eeeeee'], } ] };