Hello,
I am using plotly==5.7.0 and plotly-express== 0.4.1 in django application.
so I made a sunburst chart the problem is the scale bar doesn’t appear on the page?
and this is my code what do I need to add or modify to get it?
fig = px.sunburst(path=[Field_names,Well_names], values=Test_Pructn, hover_name=Well_names,
color_continuous_scale=px.colors.sequential.BuGn,
range_color =[0,100],
template= 'plotly_dark'
)
fig.update_layout(title='values')
fig.update_traces(textinfo='label+percent entry')
chart = fig.to_html()
the chart is well but showed without the scale bar