centerItem | R Documentation |
Move the window such that given item or items are centered
centerItem(id, itemId, options)
id |
Timeline id or a |
itemId |
A vector (or single value) of the item ids to center |
options |
Named list of options controlling mainly the animation.
Most common option is |
## Not run: timevis(data.frame( id = 1:3, start = c(Sys.Date() - 1, Sys.Date(), Sys.Date() + 1), content = c("Item 1", "Item 2", "Item 3")) ) %>% centerItem(1) ## End(Not run) if (interactive()) { library(shiny) shinyApp( ui = fluidPage( timevisOutput("timeline"), actionButton("btn", "Center around item 1") ), server = function(input, output) { output$timeline <- renderTimevis( timevis( data.frame(id = 1:3, start = c(Sys.Date() - 1, Sys.Date(), Sys.Date() + 1), content = c("Item 1", "Item 2", "Item 3")) ) ) observeEvent(input$btn, { centerItem("timeline", 1) }) } ) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.