juba / robservable

Observable notebooks as R htmlwidgets
https://juba.github.io/robservable/
163 stars 11 forks source link

Manage updatable charts #7

Closed juba closed 4 years ago

juba commented 4 years ago

Check if updatable charts with animated transitions are supported (I think not)

juba commented 4 years ago

Example :

robservable(
  "@juba/updatable-bar-chart",
  cell = c("chart", "draw"),
  hide = "draw",
  input = list(
    data = data.frame(
      name = LETTERS[1:10], 
      value = round(runif(10)*100)
    )
  )
)
juba commented 4 years ago

Of course this can only work inside a Shiny app.