removeCustomTime | R Documentation |
Remove a custom time previously added
removeCustomTime(id, itemId)
id |
Timeline id or a |
itemId |
The id of the custom time bar |
## Not run: timevis() %>% addCustomTime(Sys.Date() - 1, "yesterday") %>% addCustomTime(Sys.Date() + 1, "tomorrow") %>% removeCustomTime("yesterday") ## End(Not run) if (interactive()) { library(shiny) shinyApp( ui = fluidPage( timevisOutput("timeline"), actionButton("btn0", "Add custom time"), actionButton("btn", "Remove custom time bar") ), server = function(input, output) { output$timeline <- renderTimevis( timevis() ) observeEvent(input$btn0, { addCustomTime("timeline", Sys.Date() - 1, "yesterday") }) observeEvent(input$btn, { removeCustomTime("timeline", "yesterday") }) } ) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.