The variables used are as follows:
The working application:
Dragging is achieved by d3's drag function as follows:
var dragme = d3.drag()
.on("start", function (d) {
//when dragging starts
})
.on("drag", function () {
//during dragging
})
.on("end", function (d) {
//code to run when the drag is released
});
The code gist is as follows:

0 comments:
Post a Comment