I am looking for release event on D3.

Actually, my examples has:

.on("mouseover", function(data){...} )
.on("mousemove", function(data){...} )
.on("mouseout", function(data){...} )

which works perfect, but. if I try to do something like

.on("release", function(data){...} )

it doesn't works.

Any idea?

Thanks!

有帮助吗?

解决方案

Done!

The attribute is:

.on("mouseup", function(data){alert(1);} );

The problem also was related where I

其他提示

For reference -- D3 only supports native DOM events.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top