crosstalk icon indicating copy to clipboard operation
crosstalk copied to clipboard

Inter-htmlwidget communication for R (with and without Shiny)

Results 82 crosstalk issues
Sort by recently updated
recently updated
newest added

Reproducible example (using {crosstalk} v1.2.0): ```r library(shiny) df

I was following Figure 16.7's example from https://plotly-r.com/client-side-linking.html and cannot figure out why there is a selection called "(All)" or how to remove it. Please view issue at https://rpubs.com/danielludolf/855504

I'm currently doing this via the `defaultValues` argument in plotly's `highlight()` function, and have found it useful for sharing interesting selection states, but this should really be a property of...

I experienced strange behavior of a bar plot when using `crosstalk::filter_select`. It does not update the x axis according to the filter, and shows gaps between the bars. Here is...

When a `filter_select()` is used, the FilterHandle callback returns the keys as a string array. When a `filter_slider()` is used, a numeric array is returned. Example: ```r library(shiny) df

The documentation for `SharedData$data(withSelection)` states: ``` withSelection If 'TRUE', add a selection_ column with logical values indicating which rows are in the current selection, or NA if no selection is...

Hi! I'm working on a report using markdown and crosstalk. In an effort to make the report useable for differently abled users, we are looking at high-accessibility features. It was...

Firstly, my apologies if this is an error on my part. I have been trying to work with the example provided on http://rstudio-pubs-static.s3.amazonaws.com/209203_02f14fea3274448bbbf8d04c99c6051b.html There seems to be some oddities with...

For instance, [this is how `filter_select()` sets crosstalk events](https://github.com/rstudio/crosstalk/blob/de12a5297fbcf30506b0bfa95b6a10a45ce50ac3/javascript/src/input_selectize.js#L33-L49), but there is no logic for *responding* to crosstalk events (i.e., updating of items)

My goal is to be able to click on a polygon and the datatable renders automatically and only shows the corresponding values? Similar to what is done here with plotly....