R Package Highcharter: How do I drilldown to multiple series stacked column graph?
问题 I want to drilldown to multiple series. How do I change the x axis categories after drilldown and still maintain my series? hc <- highchart() %>% hc_chart(type = "column") %>% hc_title(text = "Job Ratio") %>% hc_xAxis(categories = c("Job A", "Job B")) %>% hc_plotOptions(series = list(stacking = "normal")) %>% hc_yAxis(max = 100) %>% hc_add_series(name = "Completed", data = list(list(y = 40, drilldown = "job-a"), list(y = 35, drilldown = "job-a"))) %>% hc_add_series(name = "No progress", data