@netv/box-selection
v1.0.9
Published
box selection plugin for NetV.js
Downloads
4
Readme
netv-box-selection
Box selection plugin for NetV.js(http://netv.zjuvag.org/)
API reference
boxSelection = new BoxSelection(netv, configs)
Create boxSelection handler
netv: NetV
: pass core NetV objectconfigs: {}
: key-value pair configsenable: bool
: default enable box-selection or notboxStyle: {}
: selection box's style (below is supported attribute and their default value)fill
:rgba(200, 200, 200, 0.2)
,stroke
:black
,stroke-width
:1
,stroke-dasharray
:[]
boxSelection.dispose()
Dispose boxSelection handler, clean related DOM element
boxSelection.enable()
Manually enable box selection.
boxSelection.disable()
Manually disable box selection.
boxSelection.onSelected(callback: (nodes: Node[]) => {})
Set callback function, the callback can get selected nodes in NetV's Node type.