Skip to content

Commit

Permalink
[tree] fixes in tree explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyetman committed Dec 27, 2023
1 parent 680a780 commit 27fb3d5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions R/tree_explorer.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tree_explorer <- function(data) {
shiny::selectInput(
inputId = "direction",
label = "direction:",
choices = c(`right [default]` = "right", "left", "down", "up"),
choices = c(`right [default]` = "right", "left", "down", "up", "radial"),
selected = "right [default]"
),
shiny::selectInput(
Expand Down Expand Up @@ -76,8 +76,8 @@ tree_explorer <- function(data) {
shiny::selectInput(
inputId = "nodeSymbol",
label = "nodeSymbol:",
choices = c(`circle [default]` = "circle", "square", "star"),
selected = "circle"
choices = c(`Circle [default]` = "Circle", "Cross", "Diamond", "Square", "Star", "Triangle", "Wye"),
selected = "Circle"
),
shiny::textInput(
inputId = "nodeFont",
Expand Down Expand Up @@ -139,8 +139,9 @@ tree_explorer <- function(data) {
nodeSize = input$nodeSize,
nodeStroke = input$nodeStroke,
nodeColor = input$nodeColor,
nodeSymobl = input$nodeSymobl,
nodeSymbol = input$nodeSymbol,
nodeFont = input$nodeFont,
nodeFontSize = input$nodeFontSize,
textColor = input$textColor,
textOpacity = input$textOpacity,
linkColor = input$linkColor,
Expand Down

0 comments on commit 27fb3d5

Please sign in to comment.