Highcharts has this neat feature when hovering over a bar in a column chart, the entire series is highlighted, best seen live here:
In the R wrapper highcharter
this does not work, why?
library(highcharter)
library(tidyverse)
hc <- highchart() %>%
hc_chart(type = "column") %>%
hc_xAxis(categories = c('Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas')) %>%
hc_add_series(name = "John", data = c(5, 3, 4, 7, 2)) %>%
hc_add_series(name = "Jane", data = c(2, -2, -3, 2, 1)) %>%
hc_add_series(name = "Joe", data = c(3, 4, 4, -2, 5))
hc