centerTime: Move the window such that the given time is centered

Description Usage Arguments Examples

Description

Move the window such that the given time is centered

Usage

1

Arguments

id

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

time

The date/time to center around

options

Named list of options controlling the animation. Most common option is "animation" = TRUE/FALSE. For a full list of options, see the "moveTo" method in the official Timeline documentation

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
timevis() %>%
  centerTime(Sys.Date() - 1)

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

westdana/Timeline documentation built on May 3, 2019, 3:02 p.m.