Learn R Programming

visNetwork (version 0.1.1)

visConfigure: Network visualization configure options

Description

Network visualization configure options. For full documentation, have a look at visDocumentation.

Usage

visConfigure(graph, enabled = NULL, filter = NULL, container = NULL,
  showButton = NULL)

Arguments

graph
: a visNetwork object
enabled
: Boolean. Default to true. Toggle the configuration interface on or off. This is an optional parameter. If left undefined and any of the other properties of this object are defined, this will be set to true.
filter
: String, Array, Boolean, Function. Default to true. When a boolean, true gives you all options, false will not show any. If a string is supplied, any combination of the following is allowed: nodes, edges, layout, interaction, manipulation, physics, selec
container
: DOM element. This allows you to put the configure list in another HTML container than below the network.
showButton
: Boolean. Default to true. Show the generate options button at the bottom of the configurator.

See Also

visNodes for nodes options, visEdges for edges options, visGroups for groups options, visLayout & visHierarchicalLayout for layout, visPhysics for physics, visInteraction for interaction, ...

Examples

Run this code
nodes <- data.frame(id = 1:3, title = paste0("<p>", 1:3,"<br> tooltip</p>"))
edges <- data.frame(from = c(1,2), to = c(1,3))

# don't look in RStudio viewer
visNetwork(nodes, edges) %>%
 visConfigure(enabled = TRUE, filter = "interaction")

Run the code above in your browser using DataLab