coreui-free-react-admin-template
coreui-free-react-admin-template copied to clipboard
Tooltip not hiding
When I use the doughnut chart with these options, the tooltip is still displayed :
options={{
responsive: true,
interaction: {
intersect: false,
},
plugins: {
tooltip: {
enabled: false,
},
legend: {
display: false,
},
title: {
display: false,
},
},
}}
Temporary fix: add this to your css file:
.disable-tooltips .chartjs-tooltip {
display: none;
}
then add the disable-tooltips class on your <CChartDoughnut> element.