We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8273bea commit b512566Copy full SHA for b512566
src/traces/pie/plot.js
@@ -82,7 +82,7 @@ module.exports = function plot(gd, cdpie) {
82
slicePath = sliceTop.selectAll('path.surface').data([pt]),
83
hasHoverData = false;
84
85
- function handleMouseOver() {
+ function handleMouseOver(evt) {
86
// in case fullLayout or fullData has changed without a replot
87
var fullLayout2 = gd._fullLayout,
88
trace2 = gd._fullData[trace.index],
@@ -123,6 +123,8 @@ module.exports = function plot(gd, cdpie) {
123
}
124
);
125
126
+ Plotly.Fx.hover(gd, evt, 'pie');
127
+
128
hasHoverData = true;
129
130
0 commit comments