8000 GitHub - d3/d3-dispatch: Register named callbacks and call them with arguments.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ d3-dispatch Public

Register named callbacks and call them with arguments.

License

Notifications You must be signed in to change notification settings

d3/d3-dispatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

d3-dispatch

Dispatching is a low-level interaction mechanism that allows you to register named callbacks and then call them with arbitrary arguments. A variety of D3 interaction components, such as d3-drag, use this mechanism to emit events to listeners. Think of this like Node’s EventEmitter, except every listener has a well-defined name so it’s easy to remove or replace them.

Resources

0