handle_brush {ggvis} | R Documentation |
Currently for brush events to be triggered on a visualisation, you must
use a .brush
property. This limitation will be lifted in the future.
handle_brush(vis, on_move = NULL, fill = "black")
vis |
Visualisation to listen to. |
on_move |
Callback function with arguments:
|
fill |
Colour of the brush. |
# Display tooltip when objects are brushed mtcars %>% ggvis(x = ~wt, y = ~mpg, size.brush := 400) %>% layer_points() %>% handle_brush(function(items, page_loc, session, ...) { show_tooltip(session, page_loc$r + 5, page_loc$t, html = nrow(items)) })