Text and Annotations in plotly histogram

in px.bar we have ‘text’ that counts the bar.( run below code ).
do we have the same features in histogram ?

import plotly.express as px

df = px.data.gapminder().query(“continent == ‘Europe’ and year == 2007 and pop > 2.e6”)
fig = px.bar(df, y=‘pop’, x=‘country’, text=‘pop’)
fig.update_traces(texttemplate=’%{text:.2s}’, textposition=‘outside’)
fig.update_layout(uniformtext_minsize=8, uniformtext_mode=‘hide’)
fig.show()