I\'m using Chart.js pie chart with tooltips which being cut for some reason.
Screenshot attached, didn\'t found any attribute/option to take care of it..
Is
You can add internal padding to the chart. For instance in my case I had a cut of tooltips on the right.
options: { responsive: true, maintainAspectRatio: false, cutoutPercentage: 60, legend: { display: false }, animation: { animateRotate: false }, layout: { padding: { right: 40 } } }