Hi!
I have a pretty standard heatmap and I cannot figure out how to add for each box the z-value as a label. Not just as hover but fixed on the heatmap. I am using plotly in what I think is a pretty standard way. I couldn’t figure it out from the doc. Here is the code:
data=[go.Heatmap(x=x_values,y=y_values,
z=z_values,colorscale=‘Jet_r’)]
layout=go.Layout(title=‘My Data’,autosize=False,
width=700, height=600,
xaxis = dict(
tickmode = ‘linear’,
dtick = 1))
fig=go.Figure(data=data,layout=layout)
Thank you for any help!
pbecker126