Closed 10YAR closed 4 months ago
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.
<CChartDoughnut>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions
When I use the doughnut chart with these options, the tooltip is still displayed :
Temporary fix: add this to your css file:
then add the disable-tooltips class on your
<CChartDoughnut>
element.