We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c18f8 commit aafa886Copy full SHA for aafa886
src/traces/sankey/plot.js
@@ -177,6 +177,7 @@ module.exports = function plot(gd, calcData) {
177
};
178
179
var linkUnhover = function(element, d, sankey) {
180
+ if(gd._fullLayout.hovermode === false) return;
181
d3.select(element).call(linkNonHoveredStyle.bind(0, d, sankey, true));
182
gd.emit('plotly_unhover', {
183
event: d3.event,
@@ -240,6 +241,7 @@ module.exports = function plot(gd, calcData) {
240
241
242
243
var nodeUnhover = function(element, d, sankey) {
244
245
d3.select(element).call(nodeNonHoveredStyle, d, sankey);
246
247
0 commit comments