d3plus v1.8.0 Release Notes

Release Date: 2015-08-15 // over 8 years ago
  • This release warrants a nice version number bump, as it brings in the most requested feature: custom mouse events. As an example, to override the click event for all shapes you would write:

    .mouse({ "click": function(d, viz) { console.log("clicked!"); } })
    

    Or, to turn off ALL mouse events:

    .mouse(false)
    

    ๐Ÿ“š Full documentation can be found here.

    Full Highlights