I have this tooltip:
And I want to give it some margin to go more to the top. example:
This is the tooltip code:
tooltip: {
caretPadding: 3,
caretSize: 0,
displayColors: false,
backgroundColor: 'rgba(45,132,180,0.8)',
bodyFontColor: 'rgb(255,255,255)',
callbacks: {
title: () => {
return
},
label: (ttItem) => ( `${ttItem.parsed.y} ppm` ),
afterBody: (ttItems) => (ttItems[0].label)
}
},
Question:
How can I give css to the tooltip to make it go closer to top?

