I am creating a drill down in Rshiny similar to the solution in this question but I have 6 drill-down levels whereas the original question has 3 levels. Is there a way to specify the colours for each drill-down level? E.g. using the referenced question, I would be able to specify the colours for level 1 city, farm and ocean, level 2 bus and car, level 3 carl and newt etc (as seen in screenshots below). Is this possible?
Select level 1 "City" resulting in level 2 bus and car
Select level 2 "Bus" resulting in Carl and Newt etc.
What I've tried:
......
highchart() %>%
hc_xAxis(type = "category") %>%
hc_add_series(tibbled, "column", hcaes(x = name, y = y), color = "#E4551F", "#4572A7",
"#AA4643", "#89A54E", "#80699B", "#3D96AE") %>%
hc_plotOptions(column = list(stacking = "normal", events = list(click = pointClickFunction)))
This didn't work, it just used the first hex code . Surely there has to be a way to say "for category city use colour "#4572A7" etc" ?? Please help
There are a few different ways you could do this. You didn't provide a reproducible question, so I've used the data
gapminder
.The highest level is the average life expectancy by continent. The second level is the average by country. The third level is the life expectancy by country by year.
I used the
highcharter
functioncolorize
to create color vectors. This is how I put it together:The data
The drill downs
The chart
With Shiny
I've provided a really simple example of how to render this plot within a Shiny application. In this example, all of the code, except the call
hchart
, is called before theui
is set.Let me know if you have any questions.