I am using chart.js 2.6.0. I want to hide the tooltip caret. I tried using 'caret: false' in tooltips option but it didn't work. How can I actually hide the caret?
options: {
tooltips: {
caret: false,
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
}
}]
}
}
Thanks in advance for your help!