Is it possible to change the width of the borders in a Plotly treemap? I am referring to the white borders separating each individual box in the treemap below.
import plotly.express as px
df = px.data.tips()
fig = px.treemap(df, path=[px.Constant("all"), 'day', 'time', 'sex'], values='total_bill')
fig.update_traces(root_color="lightgrey")
fig.update_layout(margin = dict(t=50, l=25, r=25, b=25))
fig.show()
Edit:
A workaround is to change stroke-width in the resulting SVG file. However, it would be nice if this can be done automatically.

