Home > Software design >  How to show the timeline at the top of a timevis
How to show the timeline at the top of a timevis

Time:07-08

Is it possible to show the time/date at the top of a timevis (and not at the bottom) ?

timevis(
    data.frame(id = 1:2,
         content = c("one", "two"),
         start = c("2016-01-10", "2016-01-12"))
  )

thanks

CodePudding user response:

Function timevis has an argument called options to customize the timeline. See enter image description here

  • Related