if the value is less than 10 thousand, the thousand separator is not shown. I would like to know how to modify the texttemplate !!!
df <- tibble(type = "a",
parent = "A",
value = 6265)
plot_ly(data = df,
type = "treemap", values = ~value, labels = ~type,
parents = ~parent,
textinfo = "label+value+percent parent")