setOptions | R Documentation |
Update the configuration options of a timeline
setOptions(id, options)
id |
Timeline id or a |
options |
A named list containing updated configuration options to use.
See the |
## Not run: timevis( data.frame(start = Sys.Date(), content = "Today"), options = list(showCurrentTime = FALSE, orientation = "top") ) %>% setOptions(list(editable = TRUE, showCurrentTime = TRUE)) ## End(Not run) if (interactive()) { library(shiny) shinyApp( ui = fluidPage( timevisOutput("timeline"), actionButton("btn", "Show current time and allow items to be editable") ), server = function(input, output) { output$timeline <- renderTimevis( timevis( data.frame(start = Sys.Date(), content = "Today"), options = list(showCurrentTime = FALSE, orientation = "top") ) ) observeEvent(input$btn, { setOptions("timeline", list(editable = TRUE, showCurrentTime = TRUE)) }) } ) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.