We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
highlight()
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, this results in an empty payload, when it should be populated
p <- plot_ly() %>% add_lines(data = mtcars, x = ~wt, y = ~mpg) %>% add_markers( data = highlight_key(mtcars, ~cyl, "Choose cylinder"), x = ~wt, y = ~mpg ) %>% highlight(selectize = TRUE) plotly_build(p)$x$selectize
NULL
Interestingly, if you remove the add_lines() trace, you get the correct result of:
add_lines()
$a5634ffecff7b115d858cad5b9126e93 $a5634ffecff7b115d858cad5b9126e93$items value label 1 6 6 2 4 4 3 8 8 $a5634ffecff7b115d858cad5b9126e93$group [1] "Choose cylinder"
The text was updated successfully, but these errors were encountered:
Close #2218: properly construct mapping between crosstalk sets and ke…
5f46396
…ys when constructing selectize payload
Allow highlight() selectize to contain selectize.js options (#2217)
8f5be40
* Close #2216: allow highlight() selectize to contain selectize.js options * Update shinytest screenshots * Update shinytest baseline * Close #2218: properly construct mapping between crosstalk sets and keys when constructing selectize payload * document the new feature * update news * Fix tests * Revert "Update shinytest baseline" This reverts commit fa5a1d5.
Successfully merging a pull request may close this issue.
For example, this results in an empty payload, when it should be populated
NULL
Interestingly, if you remove the
add_lines()
trace, you get the correct result of:The text was updated successfully, but these errors were encountered: