Go through the dendrogram nodes and remove its nodePar
remove_nodes_nodePar(dend, ...)
A dendrogram, after removing the nodePar attribute in all of its nodes,
if (FALSE) { # \dontrun{
dend <- USArrests[1:5, ] %>%
dist() %>%
hclust() %>%
as.dendrogram()
dend <- color_branches(dend, 3)
par(mfrow = c(1, 2))
plot(dend)
plot(remove_branches_edgePar(dend))
} # }