I want to add default icons on my graph .
Here is my graph :
And I want to add this icons on top right corner of the graph

fig = go.Figure()
fig.add_trace(go.Bar(x=list(df_open_month.Year_Month_Open), y=df_open_month.BugsOpencounts, name='BugsOpenInMonth'))
print(df_closed_month)
fig.add_trace(
go.Bar(x=df_closed_month.Year_Month_Closed, y=df_closed_month.BugsClosedcounts, name='BugsClosedInMonth'))
print(df_closed_month)
fig.add_trace(go.Scatter(x=df_fixed_month.Year_Month_Fixed, y=df_fixed_month.BugsFixTime, name='AvgBugsFixTime'))
# # Set title
fig.update_layout(
title_text="Bugs Opened/Closed/Average BugsFixtime VS Month",
paper_bgcolor="white",
plot_bgcolor="white"
)
fig.update_yaxes(title_text='Bugs Raised')
fig.update_xaxes(title_text='Month')
fig.update_layout(
xaxis=dict(
rangeselector=dict(
buttons=list([
dict(count=1,
label="1m",
step="month",
stepmode="backward"),
dict(count=6,
label="6m",
step="month",
stepmode="backward"),
dict(count=1,
label="YTD",
step="year",
stepmode="todate"),
dict(count=1,
label="1y",
step="year",
stepmode="backward"),
dict(step="all")
])
),
rangeslider=dict(
visible=False
),
type="date"
)
)
return fig
How can I do it ? thanks.