Coder Social home page Coder Social logo

Comments (6)

mbostock avatar mbostock commented on May 21, 2024 6

You can disable double-click by removing the dblclick.zoom event listener after applying the zoom behavior:

selection
    .call(zoom)
    .on("dblclick.zoom", null);

Unfortunately, there’s not a similarly easy way to disable the double-tap because this is a “synthetic” event caused by a single-touch touchstart quickly following another single-touch touchstart. You could remove the touchstart.zoom listener, but then you’d be disabling touch entirely.

Are you still allowing wheel- and touch-based zooming? Or are you only allowing custom programmatic zooming by tapping on nodes or the background? In the later case you could simply avoid applying the zoom behavior to the selection, and simply use it programmatically via zoom.transform.

from d3-zoom.

vwochnik avatar vwochnik commented on May 21, 2024

Well, what you mentioned is exactly the point why I have opened this issue. The synthetic behavior is contained inside d3-zoom. Therefore, it would make sense to have an option to disable the behavior entirely.

from d3-zoom.

mbostock avatar mbostock commented on May 21, 2024

Yes; if you there were an easy way to accomplish the requested feature without modifying d3-zoom, I would have already closed this issue. Currently the only way to disable double-tap would be to fork d3-zoom or to only use d3-zoom programmatically, handling input events yourself can then calling zoom.transform as desired.

from d3-zoom.

vwochnik avatar vwochnik commented on May 21, 2024

Many thanks to you @mbostock!

from d3-zoom.

ux-engineer avatar ux-engineer commented on May 21, 2024

@mbostock how do you disable these events with this demo? As it is not calling on selection.

http://bl.ocks.org/mbostock/34f08d5e11952a80609169b7917d4172

Or actually what I would like to implement, rather than disabling, is to undo zooming with double-click. And after that animation has finished, to call a custom function (to resample datasets).

Update: Ah, found the answer for the first question... You would chain it here:

  svg.append("rect")
      .attr("class", "zoom")
      .attr("width", width)
      .attr("height", height)
      .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
      .call(zoom)
      .on("dblclick.zoom", null);

from d3-zoom.

black-pearl45 avatar black-pearl45 commented on May 21, 2024

there is no dblclick property d.3 v3

from d3-zoom.

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.