How to modify texttemplate in plotly treemap?

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") 

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.