For instance, this example shouldn't keep stacking every time a selection is made: ```r library(plotly) mtcars %>% dplyr::count(vs) %>% crosstalk::SharedData$new(~vs) %>% plot_ly(x = ~factor(vs), y = ~n) %>% add_bars() %>% layout(barmode = "stack") %>% highlight("plotly_click", persistent = TRUE) ```  This will also help avoid the issue reported in https://github.com/plotly/plotly.js/issues/1467