I have simple table whin href
link inside the text. But clicking on it doesn't open the page.
is there any easy way to do that?
import plotly.express as px
df = px.data.gapminder().query("year == 2007")
link_ref = '<a xlink:href="http://google.com" style="cursor: pointer" target="_blank" rel="noopener noreferrer">{}</a>'
df['country'] = df['country'].apply(lambda item: link_ref.format(item, "{}"))
fig = px.treemap(df, path=[ 'continent', 'country'], values='pop',
color='lifeExp', hover_data=['iso_alpha'])
fig.show()