With the following chart:
highchart() %>%
hc_chart(type = "waterfall") %>%
hc_yAxis_multiples(create_yaxis(naxis = 2, heights = c(2, 2))) %>%
hc_add_series(data = c(1,3,2), yAxis = 0) %>%
hc_add_series(data = c(20, 40, 10), yAxis = 1)
How add a drilldown for yAxis = 0
and other drilldown for yAxis = 1
?