We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897b28d commit 3489d40Copy full SHA for 3489d40
1 file changed
src/scripts/chartist-plugin-tooltip.ts
@@ -96,10 +96,7 @@ export function ChartistPluginTooltip<T extends BaseChart>(
96
} else if (chart instanceof PieChart) {
97
// Added support for donut graph
98
if ((chart as any).options.donut) {
99
- // Added support for the solid donut graph
100
- tooltipSelector = (chart as any).options.donutSolid
101
- ? 'ct-slice-donut-solid'
102
- : 'ct-slice-donut';
+ tooltipSelector = 'ct-slice-donut';
103
} else {
104
tooltipSelector = 'ct-slice-pie';
105
}
0 commit comments