javascript - D3 mouse release event -
i looking release event on d3.
actually, examples has:
.on("mouseover", function(data){...} ) .on("mousemove", function(data){...} ) .on("mouseout", function(data){...} )
which works perfect, but. if try like
.on("release", function(data){...} )
it doesn't works.
any idea?
thanks!
done!
the attribute is:
.on("mouseup", function(data){alert(1);} );
the problem related
Comments
Post a Comment