Set or update tabgroup display labels
set_tabgroup_labels.RdUpdates the display labels for tab groups in a visualization collection. Useful when you want to change the section headers after creating the collection.
Examples
if (FALSE) { # \dontrun{
# New style: direct key-value pairs (recommended)
vizzes <- create_viz() %>%
add_viz(type = "heatmap", tabgroup = "demo") %>%
set_tabgroup_labels(demo = "Demographic Breakdowns", age = "Age Groups")
# Old style: still supported for backwards compatibility
vizzes <- create_viz() %>%
add_viz(type = "heatmap", tabgroup = "demo") %>%
set_tabgroup_labels(list(demo = "Demographic Breakdowns"))
} # }