I do not want d3.behavior.zoom to add the ability to double click zoom on my graph. How can I disable this behavior?
Here is a JSFiddle with the unwanted behavior.
I have tried the following without any luck.
d3.behavior.zoom.dblclick = function() {};
It's easy to set up a proxy function. Store the default (target) event, and then register a proxy event instead. The proxy will then enable / disable the target event using whatever logic you need:
By applying the proxy pattern in this way, you can simply change the "enableEvents" variable to enable or disable the events.
You can disable the double-click behavior by removing the zoom behavior’s dblclick event listener. Looking at your code, you’ve assigned the zoom behavior to the SVG element. So you could say:
Or, together with where you register the zoom behavior:
You might also want to move the zoom behavior down to a G element rather than putting it on the root SVG element; I’m not sure it will work correctly on the root SVG, since the SVG element doesn’t support the transform attribute.