setItems {timevis} | R Documentation |
Set the items of a timeline
Description
Set the items of a timeline
Usage
setItems(id, data)
Arguments
id |
Timeline id or a |
data |
A dataframe containing the item data to use. |
Examples
## Not run:
timevis(data.frame(start = Sys.Date(), content = "Today")) %>%
setItems(data.frame(start = Sys.Date() - 1, content = "yesterday"))
## End(Not run)
if (interactive()) {
library(shiny)
shinyApp(
ui = fluidPage(
timevisOutput("timeline"),
actionButton("btn", "Change the data to yesterday")
),
server = function(input, output) {
output$timeline <- renderTimevis(
timevis(data.frame(start = Sys.Date(), content = "Today"))
)
observeEvent(input$btn, {
setItems("timeline",
data.frame(start = Sys.Date() - 1, content = "yesterday"))
})
}
)
}
[Package timevis version 2.1.0 Index]