Hi,
I am kind of new to plotly, I am able to create all maps in plotly with hover. But I am not able to add hover columns to Densitymapbox of graphobjects. Can someone help me on this?
fig = go.Densitymapbox(lat=df[lat], lon=df[lon], z=df[heatmap_category],hovertext=df[hover],text=df[hover],hoverinfo='all',name=legend,showlegend=showlegend,
radius=20,opacity=opacity,colorscale=colormap,colorbar={'x':(0.95)-(0.05*len(figure)),'y':1,'len':0.3,'title':{'text':'<b>'+legend[:4]+'</b>','font':{'size':7}},'thickness':15,'yanchor':'top','tickfont':{'size':6}},
showscale=True,)
I am kind of trying this. I am able to create plot but hover is showing only lat-longs and index. I need to show particular column.