[Chartjs]-How Can customize chartjs doughnut chart border and tooltip

1👍

The percentage of the chart that is cut out of the middle is defined by cutoutPercentage, e.g.:

options: {
    cutoutPercentage: 80, 
}

0👍

Add percentageInnerCutout: 70 in options

options: {
percentageInnerCutout: 70, // make doughnut chart slim
}

Leave a comment