Hi...
i have tried highcharter but i failed to customized the color according the category and how to create toptip and category name and category value in each tile.
data <- data.frame(
category = rep(c("Group A", "Group B", "Group C"), each = 3),
label = c("A1", "A2", "A3", "B1", "B2", "B3", "C1", "C2", "C3"),
value = c(10, 15, 25, 20, 10, 30, 40, 20, 15),
color = rep(c("red", "blue", "green"), each = 3))
dout <- data_to_hierarchical(data, c(category, label), value)
hchart(dout, type = "treemap")