crosstalk
crosstalk copied to clipboard
Inter-htmlwidget communication for R (with and without Shiny)
The following reprex shows the issue. ``` library(crosstalk) SharedData$new(data.frame(id = letters[1:10], val = rnorm(10L)))$key() #> [1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" SharedData$new(data.frame(id = letters[1:10], val...
After creating a figure (see code below) all points are displayed. Making a selection displays the selected points only. But how to remove the selection, to display all points, without...
There an issue with the map brushing tool on a polar map projection. The brushing box is distorted and does not select map markers. Is there a way to change...
If I put a `crosstalk` control in an `ioslides_presentation`, the styles get all messed up. For example: ``` --- output: ioslides_presentation --- ## CSS messed up ```{r eval = TRUE}...
how can i select barplots with crosstalk? ``` library(crosstalk) library(plotly) shared_data
In rgl, I need to record rgl's internal ID number in a SharedData object. I've also found it convenient to store some extra information about how I want that object...
This example: ``` library(crosstalk) set.seed(2017) sd
There seems to be no way to explore available `groups` in `crosstalk`. Is this by design, and if so what are the reasons? Ideally, it seems like there should be...
I would like to use filter in my datatable and that it filters the markers in the map (shades the other or something like that). Currently, it is possible to...
Hello, This is not an issue, its more of a suggestion for something i think would be a cool feature. In particular, crosstalk works with DT for displaying data within...