GithubHelp home page GithubHelp logo

Disabling zoom about eventdrops HOT 4 CLOSED

marmelab avatar marmelab commented on August 21, 2024
Disabling zoom

from eventdrops.

Comments (4)

maherbeg avatar maherbeg commented on August 21, 2024

Ah, figured it out. May be worth enabling as a config option.

  d3.select($('rect.zoom')[0]).call(zoom);

from eventdrops.

slifty avatar slifty commented on August 21, 2024

Thank you @maherbeg I had the same situation -- note, that it's unclear exactly what your solution was from the snippet you posted (I assume you created a custom zoom behavior and that's how you override?)

Folks who simply want to disable zoom try:

d3.select($('rect.zoom')[0]).on('.zoom', null);

from eventdrops.

maherbeg avatar maherbeg commented on August 21, 2024

@slifty I actually ended up not using that. I cheated and proxied addEventListener to enable toggling of the zooming function.

var proxiedAdd = Element.prototype.addEventListener;
  var enableZoom$ = $('#zoom-element');
  Element.prototype.addEventListener = function(type, listener, useCapture) {

    var listenerToAdd = listener;
    if (type === 'wheel') {
      listenerToAdd = function() {
        if (enableZoom$.is(':checked')) {
          listener.apply(this, arguments);
        }
      };
    }
    proxiedAdd.call(this, type, listenerToAdd, useCapture);
  };

from eventdrops.

jpetitcolas avatar jpetitcolas commented on August 21, 2024

Indeed, it should be configurable. We are currently working on the next version. Let's add it the new configuration file. :)

from eventdrops.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.