add_p.Rd
Proxies to dynamically add a node or an edge to an already existing graph.
sg_add_node_p(proxy, data, ..., refresh = TRUE) sg_add_edge_p(proxy, data, ..., refresh = TRUE)
proxy | An object of class |
---|---|
data | A |
... | any column. |
refresh | Whether to refresh the graph after node is dropped, required to take effect, if you are running force the algorithm is killed. |
The proxy
object.
Have the parameters from your initial graph match that of the node you add, i.e.: if you pass size
in your initial chart,
make sure you also have it in your proxy.
# NOT RUN { demo("add-node", package = "sigmajs") demo("add-edge", package = "sigmajs") demo("add-node-edge", package = "sigmajs") # }