Closed MayaGans closed 3 years ago
Oh interesting! So it looks like this works when I include = c("chart", "update")
...but I don't want the visual output of the update function, is there a way to hide it?
Yes, there's an hide
argument to robservable
just for that.
robservable(
"@mbostock/eyes",
include = c("canvas", "mouse"),
hide = "mouse"
)
I created this notebook below - to prototype I was using the
viewof
to switch between datasets but now I'd like to sub that out to enable the user to select their own data in R. I made a little notebook here: https://observablehq.com/@mayagans/cdisc-time-series-plot-with-update-in-r where essentially I'd like to let the user select from a filtered dataset using shiny, which will runupdate.chart(order)
but I think my mental model is a little incorrect. Here's an example app:Any help appreciated! Thank you!!