addCustomTime: Add a new vertical bar at a time point that can be dragged by...

View source: R/api.R

addCustomTimeR Documentation

Add a new vertical bar at a time point that can be dragged by the user

Description

Add a new vertical bar at a time point that can be dragged by the user

Usage

addCustomTime(id, time, itemId)

Arguments

id

Timeline id or a timevis object (the output from timevis())

time

The date/time to add

itemId

The id of the custom time bar

Examples

## Not run: 
timevis() %>%
  addCustomTime(Sys.Date() - 1, "yesterday")

## End(Not run)

if (interactive()) {
library(shiny)
shinyApp(
  ui = fluidPage(
    timevisOutput("timeline"),
    actionButton("btn", "Add time bar 24 hours ago")
  ),
  server = function(input, output) {
    output$timeline <- renderTimevis(
      timevis()
    )
    observeEvent(input$btn, {
      addCustomTime("timeline", Sys.Date() - 1, "yesterday")
    })
  }
)
}

daattali/timevis documentation built on Aug. 20, 2023, 4:23 a.m.