sg_get_nodes_p {sigmajs} | R Documentation |
Get nodes
Description
Retrieve nodes and edges from the widget.
Usage
sg_get_nodes_p(proxy)
sg_get_edges_p(proxy)
Arguments
proxy |
An object of class |
Value
The proxy
object.
Examples
library(shiny)
nodes <- sg_make_nodes()
edges <- sg_make_edges(nodes)
ui <- fluidPage(
actionButton("start", "Trigger layout"), # add the button
sigmajsOutput("sg"),
verbatimTextOutput("txt")
)
server <- function(input, output){
output$sg <- renderSigmajs({
sigmajs() %>%
sg_nodes(nodes, id, size, color) %>%
sg_edges(edges, id, source, target)
})
observeEvent(input$start, {
sigmajsProxy("sg") %>% # use sigmajsProxy!
sg_get_nodes_p()
})
output$txt <- renderPrint({
input$sg_nodes
})
}
if(interactive()) shinyApp(ui, server) # run
[Package sigmajs version 0.1.5 Index]