admin管理员组文章数量:1345468
Does anybody know if it is possible to call two separate functions on the same event with d3.js? I know you can do this in JavaScript by just separating the two with a semicolon but have not been successful doing this with my particular case. I am using a force-layout graph with tool-tips and have two separate tool-tips that I want to use. On mouseover, a tool-tip appears saying the name of the node and then on click, I want a second tool-tip to show its description. On that click though, I would like for the first tool tip to go away. Here is the block of code that I am using:
.on("click", describe_tip.show)
.on("mouseover", tip.show)
.on("mouseout", tip.hide)
I want to call tip.hide
along with describe_tip.show
but do not know the correct syntax.
Any suggestions or help would be appreciated.
Does anybody know if it is possible to call two separate functions on the same event with d3.js? I know you can do this in JavaScript by just separating the two with a semicolon but have not been successful doing this with my particular case. I am using a force-layout graph with tool-tips and have two separate tool-tips that I want to use. On mouseover, a tool-tip appears saying the name of the node and then on click, I want a second tool-tip to show its description. On that click though, I would like for the first tool tip to go away. Here is the block of code that I am using:
.on("click", describe_tip.show)
.on("mouseover", tip.show)
.on("mouseout", tip.hide)
I want to call tip.hide
along with describe_tip.show
but do not know the correct syntax.
Any suggestions or help would be appreciated.
Share Improve this question edited Jul 9, 2014 at 18:03 nocodaoh.2013 asked Jul 9, 2014 at 15:54 nocodaoh.2013nocodaoh.2013 1713 silver badges11 bronze badges1 Answer
Reset to default 10You can wrap the two function calls you want to make in an anonymous function, e.g.
.on("click", function(d){
describe_tip.show(d);
tip.hide(d);
})
Note that since describe_tip.show
and tip.hide
both require data d
as an argument, you need to pass that to them. Recall that when passing an anonymous callback function to .on("click", callback)
, D3 passes:
the current datum d and the current index i, with the this context as the current DOM element
to the callback
function (docs).
本文标签: javascriptCalling two functions on same click event with d3jsStack Overflow
版权声明:本文标题:javascript - Calling two functions on same click event with d3.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812462a2543323.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论